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

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../vendor/fonts/NotoSansTC-Regular.ttf) format("truetype");
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../vendor/fonts/NotoSansTC-Medium.ttf) format("truetype");
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../vendor/fonts/NotoSansTC-Bold.ttf) format("truetype");
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

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

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

body {
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: #000000;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  overflow-x: hidden;
  padding-top: 70px;
  background: url("../images/bg_01.jpg"), url("../images/bg_02.jpg");
  background-position: center top 70px,center top 70px;
  background-size: auto,auto;
  background-repeat: no-repeat,repeat-y;
}

@media (max-width: 767px) {
  body {
    padding-top: 57px;
    background-size: 1300px auto,1300px auto;
    background-position: center top 57px,center top 57px;
  }
}

select, button, textarea, input {
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;
}

table {
  border-collapse: collapse;
}

a, a:focus {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

a:active {
  outline: none;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
    padding-right: 0px;
    padding-left: 0px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 967px;
  }
}

.header {
  background: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}

.navbar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 285px 0 18px;
  height: 70px;
}

@media (max-width: 1599px) {
  .navbar {
    padding-right: 50px;
  }
}

@media (max-width: 1199px) {
  .navbar {
    padding-right: 18px;
  }
}

@media (max-width: 767px) {
  .navbar {
    height: 57px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

.navbar__head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  position: relative;
}

@media (max-width: 991px) {
  .navbar__head {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .navbar__head::before {
    content: "";
    display: block;
    width: calc(100% + 36px);
    height: 72px;
    background: white;
    position: absolute;
    top: -14px;
    left: -18px;
    z-index: 2;
  }
}

@media (max-width: 991px) {
  .navbar__head::before {
    height: 62px;
  }
}

@media (max-width: 374px) {
  .navbar__head::before {
    height: 57px;
  }
}

.navbar__logo {
  display: inline-block;
  width: 278px;
}

@media (max-width: 991px) {
  .navbar__logo {
    width: 220px;
    position: relative;
    z-index: 3;
  }
}

@media (max-width: 480px) {
  .navbar__logo {
    width: 200px;
  }
}

.navbar__logo img {
  display: block;
}

.footer {
  margin-top: 60px;
  text-align: center;
}

.footer__item {
  font-size: 0.9375em;
  color: #e3cab0;
  text-align: center;
  line-height: 1.6;
}

.kv {
  padding-top: 92px;
}

@media (max-width: 480px) {
  .kv {
    padding-top: 50px;
  }
}

.kv__title {
  display: block;
  width: 686px;
  height: 300px;
  background: url("../images/kv-title.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  text-indent: -9999px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .kv__title {
    width: 80vw;
    height: 35vw;
  }
}

@media (max-width: 480px) {
  .kv__title {
    width: 90vw;
    height: 38vw;
  }
}

.s1 {
  padding-top: 45px;
}

.s1__block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  text-align: center;
  position: relative;
  margin-top: 35px;
}

@media (max-width: 767px) {
  .s1__block {
    display: block;
    width: 300px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .s1__block::before {
    content: "";
    display: block;
    width: 100%;
    height: 68px;
    background: url("../images/s1-bg.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -68px;
    left: 0;
    z-index: 1;
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  .s1__item {
    width: 100%;
    margin-top: 30px;
  }
  .s1__item:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .s1__item {
    width: 33.33%;
  }
  .s1__item:first-child .s1__body {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .s1__item:first-child .s1__body::before {
    display: none;
  }
  .s1__item:last-child .s1__body {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

.s1__head {
  position: relative;
  z-index: 1;
  width: 134px;
  margin-left: auto;
  margin-right: auto;
}

.s1__body {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 35px;
  margin-top: -65px;
  position: relative;
}

@media (max-width: 767px) {
  .s1__body {
    border-radius: 20px;
  }
}

.s1__body::before {
  content: "";
  display: block;
  width: 2px;
  height: 116px;
  background: #e9efdd;
  position: absolute;
  bottom: 35px;
  left: -1px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 767px) {
  .s1__body::before {
    width: 100%;
    height: 68px;
    background: url("../images/s1-bg.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    bottom: -68px;
    left: 0;
    z-index: 1;
  }
}

.s1__body-title {
  width: 124px;
  margin-left: auto;
  margin-right: auto;
}

.s1__body-text {
  font-size: 1.25em;
  color: #545454;
  line-height: 1.3;
  margin-top: 10px;
}

.s2 {
  padding-top: 65px;
  padding-bottom: 85px;
}

.s2__block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .s2__block {
    display: block;
    width: 165px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.s2__item:nth-child(1) .s2__body::before {
  content: "";
  display: block;
  width: 30px;
  height: 46px;
  background: url("../images/s2-body-no-1.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.s2__item:nth-child(2) .s2__body::before {
  content: "";
  display: block;
  width: 30px;
  height: 46px;
  background: url("../images/s2-body-no-2.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.s2__item:nth-child(3) .s2__body::before {
  content: "";
  display: block;
  width: 30px;
  height: 46px;
  background: url("../images/s2-body-no-3.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.s2__item:nth-child(4) .s2__body::before {
  content: "";
  display: block;
  width: 30px;
  height: 46px;
  background: url("../images/s2-body-no-4.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .s2__item {
    margin-top: 30px;
  }
  .s2__item:first-child {
    margin-top: 0;
  }
}

.s2__head img {
  display: block;
}

.s2__body {
  position: relative;
  padding-left: 38px;
  margin-top: 16px;
}

.s2__body-title img {
  height: 28px;
}

.s2__body-text {
  font-size: 1.25em;
  font-weight: 700;
  color: #ed6f00;
  margin-top: 2px;
}

.notice {
  background: url("../images/notice-bg.jpg");
  background-repeat: repeat;
  background-size: auto;
  background-position: left top;
  padding-top: 35px;
  padding-bottom: 35px;
}

.notice__title {
  font-size: 1.125em;
  font-weight: 700;
  color: #b5d56e;
  text-align: center;
}

.notice__list {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.375;
  margin-top: 10px;
  margin-left: 1em;
}

.notice__list li {
  margin-top: 6px;
}

.notice__list li:first-child {
  margin-top: 0;
}

.notice__list a {
  color: #f7c667;
  text-decoration: underline;
  word-break: break-all;
}

.show--mobile {
  display: none;
}

@media (max-width: 767px) {
  .show--mobile {
    display: block;
  }
}

.title {
  font-size: 2em;
  font-weight: 700;
  color: #4d2d13;
  letter-spacing: 0.075em;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .title {
    font-size: 1.75em;
  }
}

.title--highlight {
  color: #cb3a1f;
}
