@charset "UTF-8";
/* -----------------------------------------------------------------
基本設定
-------------------------------------------------------------------*/
/* -----------------------------------------------------------------
組件設定
-------------------------------------------------------------------*/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999; }

#loader {
  position: relative;
  width: 100%;
  height: 100%; }
  #loader .loader-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  #loader .loader-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    text-align: center; }
  #loader #container {
    width: 240px;
    height: 4px;
    margin: 0 auto; }
  #loader p span {
    display: inline-block;
    -webkit-animation: b ease 1s infinite;
    animation: b ease 1s infinite; }
    #loader p span:nth-of-type(1) {
      -webkit-animation-delay: -.6s;
      animation-delay: -.6s; }
    #loader p span:nth-of-type(2) {
      -webkit-animation-delay: -.55s;
      animation-delay: -.55s; }
    #loader p span:nth-of-type(3) {
      -webkit-animation-delay: -.5s;
      animation-delay: -.5s; }
    #loader p span:nth-of-type(4) {
      -webkit-animation-delay: -.45s;
      animation-delay: -.45s; }
    #loader p span:nth-of-type(5) {
      -webkit-animation-delay: -.4s;
      animation-delay: -.4s; }
    #loader p span:nth-of-type(6) {
      -webkit-animation-delay: -.35s;
      animation-delay: -.35s; }
    #loader p span:nth-of-type(7) {
      -webkit-animation-delay: -.3s;
      animation-delay: -.3s; }
    #loader p span:nth-of-type(8) {
      -webkit-animation-delay: -.25s;
      animation-delay: -.25s; }
    #loader p span:nth-of-type(9) {
      -webkit-animation-delay: -.2s;
      animation-delay: -.2s; }
    #loader p span:nth-of-type(10) {
      -webkit-animation-delay: -.15s;
      animation-delay: -.15s; }
    #loader p span:nth-of-type(11) {
      -webkit-animation-delay: -.1s;
      animation-delay: -.1s; }
    #loader p span:nth-of-type(12) {
      -webkit-animation-delay: -50ms;
      animation-delay: -50ms; }
    #loader p span:nth-of-type(13) {
      -webkit-animation-delay: 0;
      animation-delay: 0; }

.country {
  margin: 0;
  cursor: pointer;
  position: fixed;
  z-index: 20;
  right: 20px;
  top: 150px;
  width: 120px;
  color: #fff;
  text-align: center;
  background: #f1c476;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }
  .country dt {
    font-size: 16px;
    line-height: 31px; }
  .country dd {
    display: none;
    padding: 5px 0;
    margin: 0; }
    .country dd a {
      display: block;
      padding: 3px 0;
      font-size: 14px;
      color: #fff;
      text-align: center; }
      .country dd a:hover {
        color: #000; }
    .country dd img {
      display: inline;
      margin: 0 5px 3px 0;
      vertical-align: middle; }
  .country.active dd {
    display: block; }
  @media screen and (orientation: portrait) {
    .country {
      display: none; } }

#hum-menu .country {
  display: none;
  position: relative;
  top: auto;
  width: auto;
  right: auto;
  background-color: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none; }
  @media screen and (orientation: portrait) {
    #hum-menu .country {
      font-size: 4vw;
      display: block; }
      #hum-menu .country dt,
      #hum-menu .country dd a {
        color: rgba(255, 255, 255, 0.5); }
      #hum-menu .country dt {
        font-size: inherit; }
      #hum-menu .country dd {
        padding: 1em; }
        #hum-menu .country dd a {
          font-size: 14px; } }
  @media screen and (orientation: portrait) and (max-width: 480px) {
    #hum-menu .country {
      font-size: 5vw; } }

#hum-menu {
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 200; }
  #hum-menu nav {
    margin: 0 auto;
    position: relative;
    width: 750px; }
  #hum-menu .nav-list {
    margin: 0 auto;
    padding: 0px 20px 0;
    width: 750px;
    margin-bottom: 1.6em; }
    #hum-menu .nav-list li {
      padding: 0.7em 0;
      position: relative; }
      #hum-menu .nav-list li a {
        display: block;
        font-size: 2rem;
        text-align: center; }
  @media screen and (orientation: portrait) {
    #hum-menu .nav-list {
      width: 80%; }
      #hum-menu .nav-list li {
        padding: 1em 0; }
        #hum-menu .nav-list li a {
          font-size: 4vw; } }
  @media screen and (max-width: 480px) {
    #hum-menu .nav-list {
      width: 90%; }
      #hum-menu .nav-list li a {
        font-size: 5vw; } }

#btn-hum {
  position: fixed;
  top: 0px;
  right: 20px;
  z-index: 24;
  width: 120px; }
  #btn-hum img {
    max-width: 100%; }
  @media screen and (max-width: 820px) {
    #btn-hum {
      width: 12vw; } }

.btn-close {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 30px;
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%); }

.outside {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  visibility: hidden; }

.open {
  opacity: 1;
  visibility: visible; }

#about-wrap {
  position: relative;
  background-image: url("../images/laip-bg.jpg");
  background-color: #bae3f9; }
  #about-wrap #intro {
    padding-top: 61px; }
  #about-wrap #history {
    padding-top: 150px;
    padding-bottom: 50px; }
    #about-wrap #history .inner p {
      margin-bottom: 20px; }
  #about-wrap h2 {
    margin: 0 auto 37px;
    width: 435px;
    text-align: center; }
    #about-wrap h2 + p {
      margin-bottom: 20px; }
  #about-wrap h3 {
    margin: 0 auto 31px; }
  #about-wrap h3,
  #about-wrap p {
    text-align: center; }
    #about-wrap h3 img,
    #about-wrap p img {
      margin-left: auto;
      margin-right: auto; }
  #about-wrap .intro .btn {
    margin: 34px auto 0; }
  @media screen and (max-width: 900px) {
    #about-wrap h2 img,
    #about-wrap h3 img,
    #about-wrap p img {
      max-width: 100%; }
    #about-wrap h2 {
      width: 60vw; }
    #about-wrap h3 {
      width: 80vw; }
    #about-wrap p {
      width: 90vw;
      margin-left: auto;
      margin-right: auto; } }

.intro .slick_slider02 {
  background: url("../images//about/bg-SS.png") center top no-repeat;
  height: 408px;
  padding: 31px 0 0;
  width: 750px;
  max-width: 750pt;
  min-width: 750px;
  margin: 0 auto; }
  .intro .slick_slider02 img {
    display: block;
    margin: 0 auto;
    width: 666px; }
  @media screen and (max-width: 800px) {
    .intro .slick_slider02 {
      background-size: cover;
      width: 90vw;
      height: 48.96vw;
      max-width: auto;
      min-width: auto;
      padding: 3.5vw 0 0; }
      .intro .slick_slider02 img {
        width: 79.92vw;
        height: auto; } }

.intro .slick-dots {
  margin: 9pt auto 0;
  width: 664px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .intro .slick-dots li {
    width: 166px;
    height: 87pt;
    margin-right: 0;
    background-repeat: no-repeat; }
    .intro .slick-dots li:nth-child(1) {
      background-image: url("../images//about/ss-S_01_off.png"); }
      .intro .slick-dots li:nth-child(1).slick-active, .intro .slick-dots li:nth-child(1):hover {
        background-image: url("../images//about/ss-S_01_on.png"); }
    .intro .slick-dots li:nth-child(2) {
      background-image: url("../images//about/ss-S_02_off.png"); }
      .intro .slick-dots li:nth-child(2).slick-active, .intro .slick-dots li:nth-child(2):hover {
        background-image: url("../images//about/ss-S_02_on.png"); }
    .intro .slick-dots li:nth-child(3) {
      background-image: url("../images//about/ss-S_03_off.png"); }
      .intro .slick-dots li:nth-child(3).slick-active, .intro .slick-dots li:nth-child(3):hover {
        background-image: url("../images//about/ss-S_03_on.png"); }
    .intro .slick-dots li:nth-child(4) {
      background-image: url("../images//about/ss-S_04_off.png"); }
      .intro .slick-dots li:nth-child(4).slick-active, .intro .slick-dots li:nth-child(4):hover {
        background-image: url("../images//about/ss-S_04_on.png"); }
  @media screen and (max-width: 800px) {
    .intro .slick-dots {
      width: auto; }
      .intro .slick-dots li {
        width: 20vw;
        height: 13.97vw;
        background-size: cover;
        background-position: center; } }

@media screen and (min-width: 1000px) {
  .intro .slick-prev {
    left: -10px; }
  .intro .slick-next {
    right: -10px; } }

.slick-dots {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .slick-dots button::before {
    display: none; }

.slick-arrow::before {
  display: none; }

.slick-prev, .slick-next {
  height: 82px;
  width: 84px;
  z-index: 3; }

.slick-prev {
  background: url("../images/about/arrow_left.png") no-repeat; }

.slick-next {
  background: url("../images/about/arrow_right.png") no-repeat; }

#footer_btn {
  background-color: #373430;
  padding: 30px 0; }
  #footer_btn .inner {
    width: 520px;
    margin-left: auto;
    margin-right: auto; }
  #footer_btn .btn-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px; }
    #footer_btn .btn-section a {
      position: relative; }
      #footer_btn .btn-section a img {
        max-width: 100%; }
    #footer_btn .btn-section:nth-child(1) a {
      width: 100%;
      margin-bottom: 15px; }
    #footer_btn .btn-section:nth-child(2) {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      #footer_btn .btn-section:nth-child(2) a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
        flex: 0 0 250px; }
  @media screen and (max-width: 620px) {
    #footer_btn .inner {
      width: auto; }
    #footer_btn .btn-section {
      width: 90vw;
      margin-left: auto;
      margin-right: auto; }
      #footer_btn .btn-section:nth-child(1) a {
        width: 90vw; }
      #footer_btn .btn-section:nth-child(2) a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 44vw;
        flex: 0 0 44vw; } }

footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #282828; }
  @media screen and (min-width: 821px) {
    footer .links {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      font-size: 1rem;
      margin: 0 auto; }
      footer .links li,
      footer .links a {
        color: #ffe5a5; }
      footer .links a:hover {
        color: #ffd619;
        text-decoration: underline; } }
  @media screen and (orientation: portrait) {
    footer {
      padding: 1em; } }
  footer .copyright {
    font-family: Arial, sans-serif;
    line-height: 1.4;
    color: #fff;
    padding: 20px 0;
    text-align: center; }
    footer .copyright .copy-text img {
      height: 18px;
      max-width: none;
      width: auto; }
      @media screen and (orientation: portrait) {
        footer .copyright .copy-text img {
          padding: 0 1em;
          max-width: 100%;
          height: auto; } }

@media screen and (max-width: 820px) {
  footer .copyright {
    font-size: 12px; }
  footer .links {
    margin: 0 auto; }
    footer .links em {
      display: none; }
    footer .links li {
      font-size: 4vw;
      padding: 10px 0;
      text-align: center;
      color: #ffe5a5; }
      footer .links li:first-child {
        padding-top: 0; }
      footer .links li a {
        color: #ffe5a5;
        display: block; } }

#news {
  background-image: url("/laplace/images/laip-bg_2.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 50px 0; }
  @media screen and (orientation: portrait) {
    #news {
      padding: 8vw 0; } }
  #news .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px; }
    @media screen and (orientation: portrait) {
      #news .inner {
        gap: 5vw; } }
  #news .newsBox {
    padding: 18px 18px 25px;
    margin: 0 auto 35px;
    width: 1000px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px #fff solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px; }
    @media screen and (max-width: 1280px) {
      #news .newsBox {
        width: 95vw; } }
    @media screen and (orientation: portrait) {
      #news .newsBox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: auto; } }
  @media screen and (orientation: portrait) and (max-width: 480px) {
    #news .newsBox {
      width: 95vw; } }
  #news .banBox {
    position: relative; }
  #news .banner {
    width: 400px;
    height: 220px;
    overflow: hidden; }
    #news .banner a,
    #news .banner img {
      width: 100%;
      height: auto;
      display: block; }

@media screen and (orientation: portrait) and (max-width: 480px) {
  #news .banner {
    width: 85vw;
    height: auto;
    margin-left: auto;
    margin-right: auto; } }
  #news .swiper-pagination {
    bottom: -23px;
    left: 0;
    right: 0; }
    #news .swiper-pagination-bullet {
      margin: 0 4px;
      width: 12px;
      height: 12px;
      background: #69add4;
      opacity: 1; }
      #news .swiper-pagination-bullet-active {
        background: #62d9ef; }
  #news .news {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 220px;
    overflow: hidden; }
  #news .tabNav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto 13px;
    width: 100%;
    overflow: hidden; }
    #news .tabNav::before {
      content: "";
      position: absolute;
      z-index: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: #216fad; }
    #news .tabNav li {
      position: relative;
      -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      /* margin-right: -4px; */
      width: 3em;
      height: 2.2em;
      font-size: 18px;
      line-height: 2;
      text-align: center;
      font-weight: 400; }

@media screen and (orientation: portrait) and (max-width: 480px) {
  #news .tabNav li {
    font-size: 15px; } }
    #news .tabNav a {
      color: #216fad; }
      #news .tabNav a span {
        display: block;
        width: 100%; }
      #news .tabNav a em {
        display: inline-block;
        color: #779db3;
        text-align: center;
        font-style: normal;
        font-weight: 200; }
      #news .tabNav a.btn_more {
        position: absolute;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        right: 0;
        width: 3em;
        height: 1.6em;
        font-size: 15px;
        color: #95d0ff;
        font-weight: 400;
        text-align: center;
        background: #216fad;
        border-radius: 3px; }

@media screen and (orientation: portrait) and (max-width: 480px) {
  #news .tabNav a.btn_more {
    font-size: 12px; } }
        #news .tabNav a.btn_more:hover {
          color: #fff; }
    #news .tabNav a:hover,
    #news .tabNav li.focus a,
    #news .tabNav li.hover,
    #news .tabNav li.focus {
      color: #333; }
  #news .list li {
    position: relative;
    padding: 4.5px 0;
    width: 100%;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden; }
  #news .list span,
  #news .list a,
  #news .list tt {
    display: inline-block;
    height: 24px;
    line-height: 23px; }
  #news .list span {
    position: absolute;
    left: 0;
    width: 50px;
    color: #fff;
    text-align: center;
    background: #4998d7;
    border-radius: 3px; }
  #news .list a {
    padding: 0 60px 0 60px;
    width: 100%;
    color: #333;
    font-weight: 300;
    vertical-align: middle;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap; }
    #news .list a:hover {
      color: #216fad;
      text-decoration: underline; }
  #news .list tt {
    position: absolute;
    right: 0;
    color: #333; }
  #news .pageNav {
    display: none; }

body {
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif; }

.gtm_noscript {
  position: absolute; }

img {
  max-width: 100%;
  height: auto; }

#page,
main {
  width: 100%;
  overflow: hidden;
  position: relative; }

#loader-bg {
  background-color: #a1caa2; }

.country {
  background-color: rgba(0, 0, 0, 0.9); }
  .country dd a:hover {
    color: #fff; }

#loader .loader-container img {
  width: 768px;
  height: auto; }
  @media screen and (max-width: 820px) {
    #loader .loader-container img {
      width: 80vw; } }

#hum-menu {
  background-color: #233022; }
  #hum-menu .nav-list li {
    border-bottom: dotted 2px rgba(255, 255, 255, 0.15); }
  #hum-menu .nav-list a {
    color: rgba(255, 255, 255, 0.5); }
    #hum-menu .nav-list a:hover {
      color: white; }

.strokeText {
  position: relative; }
  .strokeText::before {
    content: attr(data-storke);
    position: absolute;
    z-index: -1; }

.inner {
  position: relative;
  z-index: 1; }

header,
#conts_01,
#conts_02 {
  height: 960px;
  position: relative; }

@media screen and (orientation: portrait) {
  #conts_01,
  #conts_02 {
    height: auto;
    padding: 10vw 0; } }

header {
  background-image: url("../images/kv-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  @media screen and (max-width: 1440px) {
    header {
      height: 100vh; } }
  @media screen and (orientation: portrait) {
    header {
      height: 133vw;
      background-image: url("../images/kv-bg-m.jpg"); } }
  header .logo {
    position: absolute;
    top: 25px;
    left: 1vw;
    z-index: 9;
    width: 476px; }
    header .logo img {
      width: 100%;
      height: auto; }
    @media screen and (orientation: portrait) {
      header .logo {
        top: 0;
        width: 50vw; } }
  header .inner {
    position: static; }
  header .content {
    position: absolute;
    bottom: 60px;
    z-index: 9;
    text-align: center;
    width: 100%;
    font-weight: bold; }
    @media screen and (orientation: portrait) {
      header .content {
        height: 100%;
        bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-top: 28vw;
        padding-bottom: 10vw; } }
  header .slogan {
    text-align: center;
    font-size: 30px;
    font-family: "Noto Serif TC", serif;
    position: relative;
    margin-bottom: 15px; }
    header .slogan .subtitle {
      font-size: 1.2em;
      color: #fff;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 2; }
      header .slogan .subtitle span {
        display: block;
        position: relative;
        z-index: 1;
        line-height: 1.6; }
      header .slogan .subtitle::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 7em;
        height: 100%;
        left: 50%;
        -webkit-transform: translate(-50%, 0) skewX(-45deg);
        -ms-transform: translate(-50%, 0) skewX(-45deg);
        transform: translate(-50%, 0) skewX(-45deg);
        background-image: -webkit-linear-gradient(left, transparent 2px, rgba(0, 0, 0, 0.3) 1px);
        background-image: -o-linear-gradient(left, transparent 2px, rgba(0, 0, 0, 0.3) 1px);
        background-image: linear-gradient(90deg, transparent 2px, rgba(0, 0, 0, 0.3) 1px);
        background-size: 4px 100%;
        background-color: #1c461b; }
    header .slogan p {
      position: relative;
      padding-top: 0.8em; }
      header .slogan p span {
        display: block;
        position: relative;
        z-index: 1;
        line-height: 2;
        color: #1a4119; }
      header .slogan p::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 26em;
        max-width: 85%;
        height: 100%;
        left: 50%;
        -webkit-transform: translate(-50%, 0) skewX(-45deg);
        -ms-transform: translate(-50%, 0) skewX(-45deg);
        transform: translate(-50%, 0) skewX(-45deg);
        background-color: rgba(255, 255, 255, 0.9); }
    @media screen and (orientation: portrait) {
      header .slogan {
        font-size: 3.5vw; } }

/* -----------------------------------------------------------------
// 標題樣式
-------------------------------------------------------------------*/
.title {
  font-size: 50px;
  position: relative;
  text-align: center; }
  @media screen and (orientation: portrait) {
    .title {
      font-size: 6vw; } }
  .title h2 {
    font-size: inherit;
    font-family: "Noto Serif TC", serif;
    font-weight: 900;
    position: relative;
    z-index: 1;
    line-height: 1.6; }
  .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 11em;
    max-width: 100%;
    height: 0.8em;
    left: 50%;
    -webkit-transform: translate(-50%, 0) skewX(-45deg);
    -ms-transform: translate(-50%, 0) skewX(-45deg);
    transform: translate(-50%, 0) skewX(-45deg);
    background-image: -webkit-linear-gradient(left, transparent 2px, rgba(0, 0, 0, 0.3) 1px);
    background-image: -o-linear-gradient(left, transparent 2px, rgba(0, 0, 0, 0.3) 1px);
    background-image: linear-gradient(90deg, transparent 2px, rgba(0, 0, 0, 0.3) 1px);
    background-size: 4px 100%; }

/* -----------------------------------------------------------------
  聯動活動
-------------------------------------------------------------------*/
#conts_01 {
  background-image: url("../images/event-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  #conts_01 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 60px; }
    @media screen and (orientation: portrait) {
      #conts_01 .inner {
        gap: 5vw; } }
  #conts_01 .title {
    color: #fff; }
    #conts_01 .title::after {
      background-color: #528951; }
  #conts_01 .slide {
    position: relative;
    width: 760px;
    background-color: #23ba86;
    position: relative; }
    #conts_01 .slide .swiper {
      padding: 10px; }
      #conts_01 .slide .swiper::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 200%;
        height: 100%;
        left: 50%;
        -webkit-transform: translate(-50%, 0) skewX(-45deg);
        -ms-transform: translate(-50%, 0) skewX(-45deg);
        transform: translate(-50%, 0) skewX(-45deg);
        background-image: -webkit-linear-gradient(left, transparent 2px, rgba(0, 0, 0, 0.2) 1px);
        background-image: -o-linear-gradient(left, transparent 2px, rgba(0, 0, 0, 0.2) 1px);
        background-image: linear-gradient(90deg, transparent 2px, rgba(0, 0, 0, 0.2) 1px);
        background-size: 4px 100%; }
    @media screen and (orientation: portrait) {
      #conts_01 .slide {
        width: 80vw; }
        #conts_01 .slide .swiper {
          padding: 1.5vw; } }
  #conts_01 .swiper-button-next, #conts_01 .swiper-button-prev {
    margin: 0;
    width: 47px;
    height: 70px;
    background-image: url("../images/event-arrow-left.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; }
    #conts_01 .swiper-button-next::after, #conts_01 .swiper-button-prev::after {
      content: ""; }
    @media screen and (orientation: portrait) {
      #conts_01 .swiper-button-next, #conts_01 .swiper-button-prev {
        width: 6vw;
        height: 9vw; } }
  #conts_01 .swiper-button-prev {
    -webkit-transform: translate(-120%, -50%);
    -ms-transform: translate(-120%, -50%);
    transform: translate(-120%, -50%);
    left: 0; }
  #conts_01 .swiper-button-next {
    -webkit-transform: translate(120%, -50%) scaleX(-1);
    -ms-transform: translate(120%, -50%) scaleX(-1);
    transform: translate(120%, -50%) scaleX(-1);
    right: 0; }
  #conts_01 .character {
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left top; }
    #conts_01 .character-1 {
      width: 481px;
      height: 835px;
      background-image: url("../images/event/event-character-1.png"); }
    #conts_01 .character-2 {
      width: 356px;
      height: 742px;
      background-image: url("../images/event/event-character-2.png");
      right: 0; }
    @media screen and (max-width: 1366px) {
      #conts_01 .character {
        display: none; } }

/* -----------------------------------------------------------------
  聯動外觀
-------------------------------------------------------------------*/
#conts_02 {
  background-image: url("../images/avatar-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  #conts_02 .title {
    color: #4c804c;
    line-height: 1.6; }
    #conts_02 .title::after {
      background-color: white;
      background-image: -webkit-linear-gradient(left, transparent 2px, #d5de12 1px);
      background-image: -o-linear-gradient(left, transparent 2px, #d5de12 1px);
      background-image: linear-gradient(90deg, transparent 2px, #d5de12 1px); }
  #conts_02 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 60px; }
    @media screen and (orientation: portrait) {
      #conts_02 .inner {
        gap: 5vw; } }
  #conts_02 .avatar {
    width: 960px;
    margin: 0 auto;
    position: relative; }
    @media screen and (max-width: 1180px) {
      #conts_02 .avatar {
        width: 80vw; } }
    @media screen and (max-width: 1023px) {
      #conts_02 .avatar-pc {
        display: none; } }
    #conts_02 .avatar-pc .copy-text {
      position: absolute;
      left: 50%;
      bottom: 0;
      -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
      transform: translate(-50%, -100%);
      z-index: 1; }
    #conts_02 .avatar-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto; }
    #conts_02 .avatar-item {
      border-radius: 30px;
      padding: 60px;
      height: 630px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: right center;
      background-color: #fff; }
      #conts_02 .avatar-item::after {
        content: "";
        position: absolute;
        background-color: rgba(239, 239, 239, 0.9);
        width: 100%;
        height: 160px;
        left: 0;
        bottom: 85px; }
      #conts_02 .avatar-item-1 {
        background-image: url("../images/avatar/avatar-bg-1.jpg"); }
      #conts_02 .avatar-item-2 {
        background-image: url("../images/avatar/avatar-bg-2.jpg"); }
      #conts_02 .avatar-item-3 {
        background-image: url("../images/avatar/avatar-bg-3.jpg"); }
      @media screen and (max-width: 1180px) {
        #conts_02 .avatar-item {
          padding: 5vw; } }
      #conts_02 .avatar-item-1, #conts_02 .avatar-item-2, #conts_02 .avatar-item-3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        padding-bottom: 80px; }
        #conts_02 .avatar-item-1 .avatar-content, #conts_02 .avatar-item-2 .avatar-content, #conts_02 .avatar-item-3 .avatar-content {
          -webkit-box-align: end;
          -ms-flex-align: end;
          align-items: end;
          position: relative;
          z-index: 1; }
        #conts_02 .avatar-item-1 .avatar-pic,
        #conts_02 .avatar-item-1 .avatar-list, #conts_02 .avatar-item-2 .avatar-pic,
        #conts_02 .avatar-item-2 .avatar-list, #conts_02 .avatar-item-3 .avatar-pic,
        #conts_02 .avatar-item-3 .avatar-list {
          width: 360px; }
        #conts_02 .avatar-item-1 .avatar-info, #conts_02 .avatar-item-2 .avatar-info, #conts_02 .avatar-item-3 .avatar-info {
          padding-bottom: 20px; }
        @media screen and (max-width: 1180px) {
          #conts_02 .avatar-item-1 .avatar-pic, #conts_02 .avatar-item-2 .avatar-pic, #conts_02 .avatar-item-3 .avatar-pic {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 30vw;
            flex: 0 0 30vw; } }
    #conts_02 .avatar-img {
      border-radius: 15px;
      overflow: hidden;
      position: relative; }
      #conts_02 .avatar-img figcaption {
        position: absolute;
        bottom: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        text-align: center;
        font-size: 24px;
        padding: 0.5em 0 0.6em; }
    #conts_02 .avatar-pic-2 .swiper-wrapper {
      gap: 40px; }
      @media screen and (max-width: 1024px) {
        #conts_02 .avatar-pic-2 .swiper-wrapper {
          gap: 20px; } }
    #conts_02 .avatar-pic-2 .avatar-pic-item {
      width: 360px !important;
      overflow: hidden; }
      @media screen and (max-width: 1024px) {
        #conts_02 .avatar-pic-2 .avatar-pic-item {
          width: 320px !important; } }
    #conts_02 .avatar-pic-2 .avatar-img {
      position: relative;
      margin-bottom: 20px; }
      @media screen and (max-width: 1024px) {
        #conts_02 .avatar-pic-2 .avatar-img {
          margin-bottom: 50px; } }
    #conts_02 .avatar-pic-3 .swiper-wrapper {
      gap: 40px; }
      @media screen and (max-width: 1024px) {
        #conts_02 .avatar-pic-3 .swiper-wrapper {
          gap: 20px; } }
    #conts_02 .avatar-pic-3 .avatar-pic-item {
      width: 240px !important;
      overflow: hidden; }
      @media screen and (max-width: 1024px) {
        #conts_02 .avatar-pic-3 .avatar-pic-item {
          width: 210px !important; } }
    #conts_02 .avatar-pic-3 .avatar-img {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      margin-bottom: 20px; }
      @media screen and (max-width: 1024px) {
        #conts_02 .avatar-pic-3 .avatar-img {
          margin-bottom: 50px; } }
      #conts_02 .avatar-pic-3 .avatar-img figcaption {
        position: absolute;
        bottom: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        text-align: center;
        font-size: 24px;
        padding: 0.5em 0 0.6em; }
    #conts_02 .avatar-item-5 .avatar-list figure, #conts_02 .avatar-item-6 .avatar-list figure, #conts_02 .avatar-item-7 .avatar-list figure, #conts_02 .avatar-item-8 .avatar-list figure {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      #conts_02 .avatar-item-5 .avatar-list figure figcaption, #conts_02 .avatar-item-6 .avatar-list figure figcaption, #conts_02 .avatar-item-7 .avatar-list figure figcaption, #conts_02 .avatar-item-8 .avatar-list figure figcaption {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial; }
    #conts_02 .avatar-item-6 .avatar-img {
      height: 360px; }
      #conts_02 .avatar-item-6 .avatar-img img {
        max-width: none;
        height: 360px;
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0); }
      @media screen and (max-width: 1024px) {
        #conts_02 .avatar-item-6 .avatar-img {
          width: 320px;
          height: 320px; }
          #conts_02 .avatar-item-6 .avatar-img img {
            height: 320px; } }
    #conts_02 .avatar-info {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto; }
      #conts_02 .avatar-info-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px; }
      #conts_02 .avatar-info h3 {
        text-align: center;
        font-size: 30px;
        margin-bottom: 1.3em;
        font-weight: 900;
        color: #4c804c;
        line-height: 1.4; }
        #conts_02 .avatar-info h3 span {
          display: block; }
          #conts_02 .avatar-info h3 span::before {
            -webkit-text-stroke: 5px #fff;
            text-stroke: 5px #fff; }
      @media screen and (max-width: 1180px) {
        #conts_02 .avatar-info h3 {
          font-size: 2.5vw; } }
    #conts_02 .avatar-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-left: auto;
      margin-right: auto;
      gap: 5px;
      font-size: 12px;
      font-weight: 600;
      color: #235539; }
      #conts_02 .avatar-list li {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%; }
      #conts_02 .avatar-list figure {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 5px; }
        #conts_02 .avatar-list figure img {
          width: 60px;
          height: auto; }
        #conts_02 .avatar-list figure figcaption {
          -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
          flex: 1 1 auto; }
          #conts_02 .avatar-list figure figcaption span {
            display: block;
            line-height: 1.3; }
  #conts_02 .avatar-mobile {
    display: none;
    position: relative;
    background-color: #fff;
    border-radius: 3vw;
    padding: 3vw; }
    @media screen and (max-width: 1023px) {
      #conts_02 .avatar-mobile {
        display: block; } }
    #conts_02 .avatar-mobile .copy-text {
      font-size: 2.3vw;
      padding-top: 1em;
      text-align: center; }
    #conts_02 .avatar-mobile .avatar-img {
      border-radius: 2vw;
      margin-bottom: 2vw; }
      #conts_02 .avatar-mobile .avatar-img figcaption {
        font-size: 4.5vw; }
    #conts_02 .avatar-mobile .avatar-list {
      padding: 0 1em;
      text-align: center; }
      #conts_02 .avatar-mobile .avatar-list figure {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
    #conts_02 .avatar-mobile .swiper-slide {
      padding: 1vw; }
  #conts_02 .swiper-button-prev, #conts_02 .swiper-button-next {
    width: 53px;
    height: 76px;
    margin: 0;
    background-image: url("../images/avatar/avatar-arrow_left.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; }
    #conts_02 .swiper-button-prev::after, #conts_02 .swiper-button-next::after {
      content: ""; }
    @media screen and (orientation: portrait) {
      #conts_02 .swiper-button-prev, #conts_02 .swiper-button-next {
        width: 6vw;
        height: 9vw; } }
  #conts_02 .swiper-button-prev {
    left: 0;
    -webkit-transform: translate(-120%, -50%);
    -ms-transform: translate(-120%, -50%);
    transform: translate(-120%, -50%); }
  #conts_02 .swiper-button-next {
    right: 0;
    -webkit-transform: translate(120%, -50%) scaleX(-1);
    -ms-transform: translate(120%, -50%) scaleX(-1);
    transform: translate(120%, -50%) scaleX(-1); }
  #conts_02 .character {
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left top; }
    #conts_02 .character-1 {
      width: 459px;
      height: 632px;
      background-image: url("../images/avatar/avatar-character-1.png"); }
    #conts_02 .character-2 {
      width: 598px;
      height: 924px;
      background-image: url("../images/avatar/avatar-character-2.png");
      right: 0; }
    @media screen and (max-width: 1366px) {
      #conts_02 .character {
        display: none; } }

/* -----------------------------------------------------------------
  聯動介紹
-------------------------------------------------------------------*/
#conts_03 {
  background-image: url("../images/ip-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  #conts_03 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media screen and (max-width: 600px) {
      #conts_03 .inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
    #conts_03 .inner_section:nth-child(1) {
      height: 960px; }
      #conts_03 .inner_section:nth-child(1) img {
        height: 960px;
        width: auto;
        max-width: none; }
      @media screen and (max-width: 1600px) {
        #conts_03 .inner_section:nth-child(1) {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 40vw;
          flex: 0 0 40vw;
          height: auto; }
          #conts_03 .inner_section:nth-child(1) img {
            width: 100%;
            height: auto; } }
    #conts_03 .inner_section:nth-child(2) {
      padding: 4rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      gap: 60px; }
      @media screen and (max-width: 1600px) {
        #conts_03 .inner_section:nth-child(2) {
          padding: 2vw;
          gap: 2vw; } }
  #conts_03 .title {
    color: #fff;
    font-size: 2.6vw; }
    @media screen and (max-width: 600px) {
      #conts_03 .title {
        font-size: 4.5vw; } }
    #conts_03 .title span {
      display: block; }
    #conts_03 .title em {
      color: #fff883; }
    #conts_03 .title::after {
      width: 100%;
      background-color: #004e6e;
      background-image: -webkit-linear-gradient(left, transparent 2px, rgba(0, 0, 0, 0.5) 1px);
      background-image: -o-linear-gradient(left, transparent 2px, rgba(0, 0, 0, 0.5) 1px);
      background-image: linear-gradient(90deg, transparent 2px, rgba(0, 0, 0, 0.5) 1px); }
  #conts_03 .content {
    padding: 0 1em;
    color: #fff;
    font-size: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1em;
    line-height: 1.6; }
    @media screen and (max-width: 1600px) {
      #conts_03 .content {
        font-size: 1.5vw; } }
    @media screen and (max-width: 600px) {
      #conts_03 .content {
        padding: 10vw 1em;
        font-size: 14px; } }
  #conts_03 .btn {
    font-family: "Noto Serif TC";
    font-weight: 900;
    text-align: center;
    font-size: 1.3em; }
    @media screen and (max-width: 600px) {
      #conts_03 .btn {
        font-size: 1em; } }
    #conts_03 .btn a {
      display: inline-block;
      border: 1px solid rgba(82, 137, 81, 0.6);
      padding: 2px; }
    #conts_03 .btn p {
      display: inline-block;
      border: 2px solid #528951;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 0 1em; }
    #conts_03 .btn span {
      display: inline-block;
      background: -webkit-gradient(linear, left bottom, left top, from(#fff6ad), to(#fff));
      background: -webkit-linear-gradient(bottom, #fff6ad 0%, #fff 100%);
      background: -o-linear-gradient(bottom, #fff6ad 0%, #fff 100%);
      background: linear-gradient(to top, #fff6ad 0%, #fff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      -webkit-box-decoration-break: clone; }
    #conts_03 .btn:hover p {
      background-color: rgba(0, 0, 0, 0.8); }
    #conts_03 .btn:hover span {
      background: -webkit-gradient(linear, left bottom, left top, from(#ffe400), to(#fff));
      background: -webkit-linear-gradient(bottom, #ffe400 0%, #fff 100%);
      background: -o-linear-gradient(bottom, #ffe400 0%, #fff 100%);
      background: linear-gradient(to top, #ffe400 0%, #fff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      -webkit-box-decoration-break: clone; }
  #conts_03 .copy-text {
    text-align: center;
    font-size: 12px; }

/* -----------------------------------------------------------------
  新聞
-------------------------------------------------------------------*/
#news .title {
  width: 100%; }
  #news .title h2 {
    color: #fff; }
  #news .title::after {
    width: 6em;
    background-color: #0065ab;
    background-image: -webkit-linear-gradient(left, transparent 2px, rgba(213, 222, 18, 0.2) 1px);
    background-image: -o-linear-gradient(left, transparent 2px, rgba(213, 222, 18, 0.2) 1px);
    background-image: linear-gradient(90deg, transparent 2px, rgba(213, 222, 18, 0.2) 1px); }

.gotop {
  position: fixed;
  left: 10px;
  bottom: 5vw;
  z-index: 20;
  width: 120px; }
  .gotop img {
    max-width: 100%;
    height: auto; }
  @media screen and (max-width: 820px) {
    .gotop {
      width: 15vw; } }

.xpay {
  bottom: 70px; }
  @media screen and (max-width: 820px) {
    .xpay {
      bottom: 100px;
      right: 10px; } }
