@charset "UTF-8";

/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * ALL
 * HEADER
 * BANNER
 * FOOTER
 * FOLLOW
 * MAIN
 * ABOUT
 * NEWS
 * AWA
 * ACTIVITY
 * DONATE
 * CONTACT
 * UNIT
 * LOGIN
 * FORGET
 * JOIN
 * REGISTER
 * FINISH
 * MEMBER
 * FAQ
 **/
/*------------------------------------*\
    ALL
\*------------------------------------*/
html,
body {
  overflow-x: hidden;
  min-height: 1000px;
}

body {
  color: #666666;
  font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
  padding-top: 60px;
}

@media (min-width: 992px) {
  body {
    padding-top: 140px;
  }
}

@media (min-width: 1440px) {
  body {
    padding-top: 120px;
  }
}

a {
  display: inline-block;
  color: #666666;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

a:hover,
a:focus {
  color: #a72126;
  outline: 0;
  text-decoration: none;
}

span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: auto\9;
  /* ie8 */
}

.container {
  max-width: 100%;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1300px;
    padding: 0;
  }
}

#scrollUp {
  background: url(../images/scrollup-red.svg);
  width: 20px;
  height: 175px;
  right: 1%;
  bottom: 13%;
  z-index: 1000 !important;
}

#scrollUp.active {
  background: url(../images/scrollup.svg);
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/
header {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.125);
  background-color: #ffffff;
  border-top: 5px solid #a72126;
  height: 60px;
}

@media (min-width: 992px) {
  header {
    height: 150px;
  }
}

@media (min-width: 1440px) {
  header {
    height: 120px;
  }
}

header>.container {
  max-width: 100%;
}

@media (min-width: 1880px) {
  header>.container {
    max-width: 1800px;
    padding-right: 0;
  }
}

.navbar {
  padding: 0.25rem 0;
}

@media (min-width: 992px) {
  .navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 1440px) {
  .navbar {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.navbar-brand {
  padding: 0;
  margin-right: 0;
}

.navbar-brand img {
  width: 240px;
}

@media (min-width: 576px) {
  .navbar-brand img {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .navbar-brand img {
    width: 380px;
  }
}

@media (min-width: 1880px) {
  .navbar-brand img {
    width: auto;
    height: auto;
  }
}

.navbar-toggler {
  border: none;
  width: 50px;
  height: 50px;
  padding: 5px;
  margin: 0;
  position: relative;
  top: 0;
  z-index: 1050;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler .icon-bar {
  display: block;
  background: #000000;
  text-align: center;
  width: 30px;
  height: 2px;
  position: absolute;
  right: 10px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navbar-toggler .icon-bar:nth-of-type(1) {
  top: 18px;
}

.navbar-toggler .icon-bar:nth-of-type(2) {
  top: 24px;
  opacity: 1;
}

.navbar-toggler .icon-bar:nth-of-type(3) {
  top: 30px;
}

.navbar-toggler.open .icon-bar {
  right: 6px;
}

.navbar-toggler.open .icon-bar:nth-of-type(1) {
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-toggler.open .icon-bar:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.open .icon-bar:nth-of-type(3) {
  top: 33px;
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar-collapse {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.navbar-nav {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.125);
  background-color: #ffffff;
  padding: 1rem;
  width: 80%;
  position: fixed;
  top: 60px;
  right: -100%;
  bottom: 0;
  visibility: hidden;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navbar-nav.open {
  right: 0;
  visibility: visible;
}

@media (min-width: 992px) {
  .navbar-nav {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    position: relative;
    top: 0;
    right: 0;
    visibility: visible;
  }
}

.navbar-nav .nav-item {
  padding: 0;
}

.navbar-nav .nav-link {
  color: #000000;
  font-family: "Noto Serif TC", serif;
  font-size: 1.0625rem;
  letter-spacing: 0.25rem;
  overflow: hidden;
  padding: 0.75rem 0;
  position: relative;
}

.navbar-nav .nav-link span {
  color: #a72126;
  font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  padding-top: 0.5rem;
  display: none;
}

.navbar-nav .nav-link b {
  background: url(../images/user.svg);
  width: 25px;
  height: 25px;
  display: block;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #a72126;
}

.navbar-nav .nav-link:hover b,
.navbar-nav .nav-link:focus b,
.navbar-nav .nav-link.active b {
  background: url(../images/user-red.svg);
}

.navbar-nav .nav-item:last-child .nav-link span {
  width: 30px;
  display: inline-block;
}

@media (min-width: 992px) {
  .navbar-nav .nav-link {
    letter-spacing: 0.125rem;
    text-align: center;
    padding: 1rem 0;
  }

  .navbar-nav .nav-link span {
    display: block;
    letter-spacing: 0.05rem;
  }

  .navbar-nav .nav-item:last-child {
    padding-right: 0;
    position: relative;
  }

  .navbar-nav .nav-item:last-child::before {
    content: '';
    width: 1px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.125);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }

  .navbar-nav .nav-item:last-child .nav-link span {
    font-weight: bold;
    padding-top: 0.125rem;
  }
}

@media (min-width: 1200px) {
  .navbar-nav .nav-link {
    letter-spacing: 0.25rem;
  }
}

@media (min-width: 1440px) {
  .navbar-nav .nav-link {
    height: 115px;
    padding: 2rem 0;
  }
}

@media (min-width: 1880px) {
  .navbar-nav .nav-item {
    padding: 0 0.9rem;
  }
}

.dropdown .dropdown-menu {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.125);
  background-color: #f2f2f2;
  padding: 1.25rem 1rem 1.25rem 2.5rem;
  margin-top: 0;
  width: 220px;
}

.dropdown .dropdown-menu::before {
  content: '';
  width: 1px;
  height: auto;
  background-color: #a72126;
  position: absolute;
  top: 4.75rem;
  bottom: 1.75rem;
  left: 1.5rem;
}

.dropdown .dropdown-item {
  color: #231815;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 0.05rem;
  padding: 0.35rem 0;
  white-space: normal;
}

.dropdown .dropdown-item:hover,
.dropdown .dropdown-item:focus,
.dropdown .dropdown-item.active {
  background-color: transparent;
  color: #000000;
  font-weight: bold;
}

@media (min-width: 992px) {
  .dropdown .dropdown-menu {
    display: block;
    position: absolute;
    top: 10rem;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    visibility: hidden;
    opacity: 0;
  }

  .dropdown .dropdown-menu::before {
    top: 1.75rem;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus .dropdown-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }

  .dropdown .dropdown-toggle::after {
    display: none;
  }
}

/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner {
  overflow: hidden;
  position: relative;
}

.banner::before {
  content: '';
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.banner::after {
  content: '';
  border: 1px solid #ffffff;
  width: auto;
  height: auto;
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
}

.banner>.container {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.banner-pic {
  height: 300px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-animation: zoom_animation 15s;
  animation: zoom_animation 15s;
}

@media (min-width: 576px) {
  .banner-pic {
    height: 430px;
  }
}

.banner-txt .page-header {
  width: 90%;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.banner-txt .page-header h1 {
  font-size: 0.9375rem;
  letter-spacing: 0.2rem;
  margin-bottom: 3rem;
}

.banner-txt .page-header h1 span {
  display: block;
  font-family: "Noto Serif TC", serif;
  font-size: 2rem;
  letter-spacing: 0.5rem;
  margin-bottom: 1rem;
}

.banner-txt .page-header h2 {
  color: #ffffff;
  font-family: "Noto Serif TC", serif;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.25rem;
  line-height: 3rem;
  margin-bottom: 1rem;
}

.banner-txt .page-header h2 span {
  letter-spacing: 0.1rem;
  display: inline-block;
  position: relative;
  margin-left: -100px;
}

.banner-txt .page-header h2 span::before {
  content: '';
  width: 100px;
  height: 1px;
  background-color: #ffffff;
  right: -120px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.banner-txt .page-header h2 b {
  display: block;
  color: #f2efc7;
  font-weight: normal;
}

.banner-txt .page-header p {
  font-size: 1.125rem;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .banner-txt .page-header h1 span {
    font-size: 2.625rem;
  }

  .banner-txt .page-header h2 {
    font-size: 2.8125rem;
    line-height: 4rem;
  }

  .banner-txt .page-header h2 b {
    display: inline-block;
  }

  .banner-txt .page-header p {
    font-size: 1.3125rem;
    margin-bottom: 0;
  }
}

@-webkit-keyframes zoom_animation {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoom_animation {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer {
  background-color: #a72126;
  color: #ffffff;
  padding: 3rem 0 2rem;
  position: relative;
  z-index: 1000;
}

.footer a {
  color: #ffffff;
}

.footer a:hover,
.footer a:focus {
  text-decoration: underline;
}

@media (min-width: 1440px) {
  .footer>.container {
    padding: 0;
  }
}

.footer-nav {
  border-bottom: 1px solid #ffffff;
  padding: 0 3rem;
}

.footer-nav h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  margin-bottom: 1.25rem;
}

.footer-nav .nav {
  padding-bottom: 1.5rem;
}

.footer-nav .nav li {
  letter-spacing: 0.1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 1440px) {
  .footer-nav {
    padding: 0 6rem 1.5rem;
  }
}

.footer-info {
  padding-top: 1rem;
}

.footer-info .nav {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-info .nav li {
  font-size: 0.875rem;
  text-align: center;
  padding-right: 1.5rem;
}

.footer-info .nav li b {
  letter-spacing: 0.1rem;
}

.footer-info .nav li span {
  position: relative;
  padding: 0 0.5rem;
}

.footer-info .nav li span::before {
  content: '';
  width: 1px;
  height: 10px;
  background-color: #ffffff;
  display: inline-block;
}

.footer-info .nav li.copy {
  font-size: 0.8125rem;
}

/*------------------------------------*\
    FOLLOW
\*------------------------------------*/
.follow {
  color: #a72126;
  font-size: 0.9375rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  position: fixed;
  left: -12%;
  bottom: 30%;
  z-index: 1010;
}

.follow::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: #a72126;
  position: absolute;
  right: -70px;
  bottom: 5px;
}

.follow span {
  letter-spacing: 0.075rem;
  margin-right: 1rem;
}

.follow a {
  color: #a72126;
  font-size: 1.0625rem;
  padding: 0 1rem;
}

.follow a:hover,
.follow a:focus {
  color: #000000;
}

@media (min-width: 768px) {
  .follow {
    left: -5%;
  }
}

@media (min-width: 992px) {
  .follow {
    left: -3%;
  }
}

@media (min-width: 1200px) {
  .follow {
    left: -4%;
  }
}

@media (min-width: 1440px) {
  .follow {
    left: 0;
  }
}

.follow.active {
  color: #ffffff;
}

.follow.active::after {
  background-color: #ffffff;
}

.follow.active a {
  color: #ffffff;
}

.follow.active a:hover,
.follow.active a:focus {
  color: #000000;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main {
  position: relative;
  padding: 3rem 0;
}

@media (min-width: 992px) {
  main {
    padding: 5rem 0;
  }
}

/* MENU */
.menu {
  position: relative;
  top: -3rem;
  margin-bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 1000;
}

@media (min-width: 992px) {
  .menu {
    top: -5rem;
  }
}

@media (min-width: 1440px) {
  .menu {
    width: 1300px;
    top: -155px;
    margin-bottom: -5rem;
    left: auto;
    right: auto;
  }
}

.menu .nav li {
  width: 100%;
}

.menu .nav li a {
  display: block;
  background-color: #a8a8a8;
  color: #ffffff;
  font-family: "Noto Serif TC", serif;
  font-size: 1.4375rem;
  text-align: center;
  line-height: 75px;
  letter-spacing: 0.3rem;
  height: 75px;
}

.menu .nav li a:hover,
.menu .nav li a:focus,
.menu .nav li a.active {
  background-color: #ffffff;
  color: #a72126;
}

.menu .nav li+li a {
  border-left: 1px solid #ffffff;
}

@media (min-width: 992px) {
  .menu .nav li {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .menu-secondary .nav li {
    width: 33.33%;
  }
}

/* PAGE-TITLE */
.page-title h2 {
  color: #a72126;
  font-size: 0.9375rem;
  letter-spacing: 0.2rem;
  text-align: center;
}

.page-title h2 span {
  display: block;
  color: #000000;
  font-family: "Noto Serif TC", serif;
  font-size: 2.375rem;
  letter-spacing: 0.5rem;
  margin-bottom: 0.8rem;
}

.page-title p {
  color: #3a3a3a;
  font-size: 1.125rem;
  text-align: center;
  line-height: 2rem;
  margin-top: 2rem;
}

/* BUTTON */
.btn-wrap {
  text-align: center;
}

.btn {
  border-radius: 0;
  border: none;
  background-color: transparent;
  color: #a72126;
  font-size: 1.125rem;
}

.btn-back {
  border-top: 1px solid #a72126;
  border-bottom: 1px solid #a72126;
  text-align: center;
  display: block;
  padding: 0.75rem 0;
}

.btn-back:hover,
.btn-back:focus {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.btn-back:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-more {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: #a72126;
  color: #ffffff;
  font-size: 0.8125rem;
  text-align: center;
  letter-spacing: 0.2rem;
  line-height: 35px;
  width: 150px;
  height: 35px;
  padding-left: 1.5rem;
  position: relative;
}

.btn-more::before {
  content: '';
  width: 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.btn-more::after {
  content: '';
  width: 1px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 3px;
}

.btn-more:hover,
.btn-more:focus {
  background-color: #ffffff;
  color: #a72126;
}

.btn-more:hover::before,
.btn-more:hover::after,
.btn-more:focus::before,
.btn-more:focus::after {
  background-color: #a72126;
}

.btn-primary {
  border: 1px solid #a72126;
  background-color: #a72126;
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #a72126;
  background-color: #ffffff;
  color: #a72126;
}

.btn-secondary {
  border: 1px solid #a72126;
  background-color: #ffffff;
  color: #a72126;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus {
  border: 1px solid #a72126;
  background-color: #a72126;
  color: #ffffff;
}

/* PHOTO */
.pic a {
  background-color: #000000;
  position: relative;
}

.pic a * {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.pic a::before {
  content: '';
  width: 40px;
  height: 40px;
  background: url(../images/more.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  white-space: nowrap;
}

.pic a img {
  width: 100%;
  opacity: 1;
}

.pic a:hover::before,
.pic a:focus::before {
  opacity: 1;
}

.pic a:hover img,
.pic a:focus img {
  opacity: 0.4;
}

.pic a.full::before {
  content: '活動額滿';
  border: 1px solid #ffffff;
  border-radius: 25px;
  background: transparent;
  color: #ffffff;
  letter-spacing: 0.125rem;
  width: auto;
  height: auto;
  padding: 0.25rem 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 1;
}

.pic a.full img {
  opacity: 0.4;
}

.pic a.raise::before {
  content: '募集結束';
  border: 1px solid #ffffff;
  border-radius: 25px;
  background: transparent;
  color: #ffffff;
  letter-spacing: 0.125rem;
  width: auto;
  height: auto;
  padding: 0.25rem 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 1;
}

.pic a.raise img {
  opacity: 0.4;
}

/* PAGINATION */
.pagination .page-link {
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  color: #666666;
  font-size: 0.75rem;
  text-align: center;
  line-height: 30px;
  width: 40px;
  height: 30px;
  padding: 0;
}

.pagination .page-link:hover,
.pagination .page-link:focus,
.pagination .page-link.active {
  background-color: #a72126;
  color: #ffffff;
}

.pagination .page-first,
.pagination .page-last,
.pagination .page-prev,
.pagination .page-next {
  background-position: center center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}

.pagination .page-first,
.pagination .page-last {
  background-image: url(../images/arrow-double.svg);
}

.pagination .page-first:hover,
.pagination .page-first:focus,
.pagination .page-last:hover,
.pagination .page-last:focus {
  background-image: url(../images/arrow-double-red.svg);
}

.pagination .page-prev,
.pagination .page-next {
  background-image: url(../images/arrow.svg);
}

.pagination .page-prev:hover,
.pagination .page-prev:focus,
.pagination .page-next:hover,
.pagination .page-next:focus {
  background-image: url(../images/arrow-red.svg);
}

.pagination .page-last,
.pagination .page-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (min-width: 576px) {

  .pagination .page-first,
  .pagination .page-last,
  .pagination .page-prev,
  .pagination .page-next {
    width: 40px;
  }
}

/* BADGE */
.badge {
  border-radius: 0;
  background-color: #a72126;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  line-height: 30px;
  height: 30px;
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  padding: 0 0.75rem;
}

.badge-red {
  background-color: #a72126;
}

.badge-orange {
  background-color: #c68112;
}

.badge-yellow {
  background-color: #eabd00;
}

.badge-blue {
  background-color: #1f2456;
}

.badge-black {
  background-color: #231815;
}

/* VIEW */
.view .btn-wrap {
  margin: 3.25rem 0 2rem;
}

@media (min-width: 1200px) {
  .view {
    max-width: 1170px;
    margin: 0 auto !important;
  }
}

/* FORM */
.form .form-row {
  margin: 0 -1rem;
}

.form .form-group {
  padding: 0 1rem;
  margin-bottom: 1.125rem;
}

.form .col-form-label span {
  color: #a72126;
}

.form .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  height: 45px;
}

.form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #a72126;
}

.form .form-control:-webkit-autofill,
.form .form-control:-webkit-autofill:hover,
.form .form-control:-webkit-autofill:focus,
.form .form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px rgba(167, 33, 38, 0.2) inset;
  box-shadow: 0 0 0px 1000px rgba(167, 33, 38, 0.2) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.form .form-control::-webkit-input-placeholder {
  color: #d1d1d1;
}

.form .form-control::-moz-placeholder {
  color: #d1d1d1;
}

.form .form-control:-ms-input-placeholder {
  color: #d1d1d1;
}

.form .form-control::-ms-input-placeholder {
  color: #d1d1d1;
}

.form .form-control::placeholder {
  color: #d1d1d1;
}

.form .form-control:disabled,
.form .form-control[readonly] {
  background-color: transparent;
}

.form .form-check {
  margin-bottom: 0.5rem;
}

.form .form-check-inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
}

.form .form-check-label {
  font-size: 1.0625rem;
}

.form .form-check-label span {
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.form .textarea-wrap .form-control {
  height: auto;
}

.form .twzipcode {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form .twzipcode>div {
  width: 100%;
}

.form .twzipcode input[name="zipcode"] {
  display: none;
}

.form .twzipcode [data-role="county"] {
  margin-bottom: 1.5rem;
}

.form .code {
  text-align: left;
  margin-top: 1rem;
}

.form .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form .btn {
  line-height: 45px;
  width: 200px;
  height: 45px;
  padding: 0;
}

@media (min-width: 576px) {
  .form .form-check-inline {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1.5rem;
    margin-bottom: 0;
  }

  .form .twzipcode {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .form .twzipcode>div {
    width: 48%;
  }

  .form .twzipcode [data-role="county"] {
    margin-bottom: 0;
  }

  .form .code {
    text-align: right;
    margin-top: 0;
  }

  .form .btn-wrap {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .form .textarea-wrap .col-form-label {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 12%;
    -ms-flex: 0 0 12%;
    flex: 0 0 12%;
    max-width: 12%;
  }

  .form .textarea-wrap .textarea {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 88%;
    -ms-flex: 0 0 88%;
    flex: 0 0 88%;
    max-width: 88%;
  }
}

/* TABLE */
.table th,
.table td {
  border-top: none;
  color: #000000;
  font-size: 1.125rem;
  letter-spacing: 0.25rem;
  text-align: center;
  vertical-align: middle;
  padding: 1rem;
}

.table thead th {
  background-color: #a72126;
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0.25rem;
}

.table thead th .en {
  display: none;
  letter-spacing: normal;
}

@media (min-width: 992px) {
  .table thead th .en {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .table thead {
    display: none;
  }

  .table tr {
    border: 1px solid #dddddd;
    display: block;
    width: 100%;
    margin-bottom: 2rem;
  }

  .table tbody td {
    border-top: 1px solid #dddddd;
    border-bottom: none;
    text-align: left;
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    padding-left: 7.5rem;
    position: relative;
  }

  .table tbody td::before {
    content: attr(data-content);
    background-color: #a72126;
    color: #ffffff;
    white-space: nowrap;
    width: 105px;
    padding: 0.5rem 0.75rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.about-view img {
  margin-bottom: 2rem;
}

.about-view p span {
  color: #a72126;
}

.about-view .awa-view-header-tit h2 span {
  font-size: 1.875rem;
  word-break: keep-all;
}

@media (min-width: 1200px) {
  .about-view .awa-view-header-tit {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 37%;
    -ms-flex: 0 0 37%;
    flex: 0 0 37%;
    max-width: 37%;
  }

  .about-view .awa-view-header-info {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 63%;
    -ms-flex: 0 0 63%;
    flex: 0 0 63%;
    max-width: 63%;
  }
}

.about-president-view {
  background: url(../images/about-president-bg.jpg) center center repeat;
  border: 1px solid #a72126;
  position: relative;
}

.about-president-view::before {
  content: '';
  width: auto;
  height: auto;
  border: 1px solid #a72126;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}

.about-president-content {
  padding: 2rem 1rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

.about-president-txt h2 {
  color: #000000;
  font-size: 0.875rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2.25rem;
}

.about-president-txt h2 span {
  color: #a72126;
  font-family: "Noto Serif TC", serif;
  font-size: 1.6875rem;
  letter-spacing: 0.3rem;
  display: block;
  margin-bottom: 1rem;
}

.about-president-txt h3 {
  color: #000000;
  font-family: "Noto Serif TC", serif;
  letter-spacing: 0.8rem;
  margin-bottom: 2.25rem;
}

.about-president-txt h3 span {
  color: #a72126;
  font-size: 1.125rem;
  letter-spacing: 0.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.about-president-txt p {
  border-bottom: 1px dashed #a72126;
  padding-bottom: 2rem;
}

.about-president-desc {
  margin-top: 1rem;
}

.about-president-desc p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .about-president-content {
    padding: 3rem;
  }
}

@media (min-width: 1440px) {
  .about-president-content {
    padding: 6rem;
  }

  .about-president-pic {
    padding-right: 2.5rem;
  }
}

.about-history-view {
  padding-top: 3rem;
}

.about-history-item {
  margin-bottom: 3rem;
}

.about-history-item:first-child .about-history-txt {
  position: relative;
}

.about-history-item:first-child .about-history-txt::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a72126;
  position: absolute;
  top: -3rem;
  left: -5px;
}

.about-history-item:last-child {
  margin-bottom: 0;
}

.about-history-date {
  color: #a72126;
  font-family: "Noto Serif TC", serif;
  font-size: 1.25rem;
  text-align: center;
  letter-spacing: 0.1rem;
  position: relative;
}

.about-history-date::before {
  content: '';
  width: 15px;
  height: 15px;
  background: url(../images/about_history-icon.svg);
  position: absolute;
  top: 10px;
  right: -8px;
  z-index: 2;
}

.about-history-date::after {
  content: '';
  width: 1px;
  height: auto;
  background-color: #a72126;
  position: absolute;
  top: -3rem;
  bottom: -3rem;
  right: -1px;
}

.about-history-txt p {
  font-size: 1.0625rem;
  line-height: 1.5rem;
  letter-spacing: 0.125rem;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.about-history-txt p b {
  font-size: 0.9375rem;
  font-weight: normal;
}

.about-history-txt p span {
  color: #666666;
}

.about-history-txt p span.date {
  color: #a72126;
  font-family: "Noto Serif TC", serif;
  text-align: center;
  white-space: nowrap;
  width: 40px;
  margin-right: 1rem;
}

.about-history-txt p span.red {
  color: #a72126;
}

.about-history-txt p span.blue {
  color: #1f2456;
}

.about-history-txt p span.yellow {
  color: #c68112;
}

.about-history-txt p span span {
  margin-top: 0.5rem;
}

.about-history-txt p img {
  margin-top: 0.5rem;
}

.about-history-txt p+p {
  margin-top: 1rem;
}

@media (min-width: 576px) {
  .about-history-date {
    font-size: 1.5625rem;
    text-align: left;
  }

  .about-history-txt {
    padding-left: 3rem;
  }

  .about-history-txt p {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 1440px) {
  .about-history-date {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 12%;
    -ms-flex: 0 0 12%;
    flex: 0 0 12%;
    max-width: 12%;
  }

  .about-history-txt {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 88%;
    -ms-flex: 0 0 88%;
    flex: 0 0 88%;
    max-width: 88%;
  }
}

.about-organization-txt {
  text-align: center;
}

.about-organization-txt h2 {
  border-bottom: 1px solid #a72126;
  color: #000000;
  font-size: 0.875rem;
  letter-spacing: 0.2rem;
  padding-bottom: 1.5rem;
}

.about-organization-txt h2 span {
  display: block;
  color: #a72126;
  font-family: "Noto Serif TC", serif;
  font-size: 1.875rem;
  letter-spacing: 0.35rem;
  margin-bottom: 1rem;
}

.about-organization-table h2 {
  color: #000000;
  font-size: 1.125rem;
  line-height: 2rem;
  letter-spacing: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1em;
}

.about-organization-table h3 {
  color: #a72126;
  font-size: 1rem;
  line-height: 1.8rem;
  text-align: center;
}

.about-organization-table .table {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .about-organization-table h2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.about-awards-item {
  margin-bottom: 3rem;
}

.about-awards-date span {
  border: 1px solid #a72126;
  font-size: 0.9375rem;
  text-align: center;
  width: 130px;
  height: 130px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-awards-date span::before {
  content: '';
  width: auto;
  height: auto;
  border: 1px solid #a72126;
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
}

.about-awards-date span b {
  display: inline-block;
  border-top: 1px solid #a72126;
  color: #a72126;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.about-awards-txt {
  margin: 2rem 0;
}

.about-awards-txt h3 {
  color: #a72126;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.about-awards-txt p {
  font-size: 0.9375rem;
  line-height: 1.8rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0;
}

.about-awards-pic {
  border-bottom: 1px dashed #a72126;
}

@media (min-width: 992px) {
  .about-awards-date {
    padding-right: 0;
  }

  .about-awards-txt {
    border-bottom: 1px dashed #a72126;
    padding-left: 0;
    padding-right: 1.5rem;
    margin: 0;
  }
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
.news-list {
  margin: 0;
}

.news-list-item {
  border-bottom: 1px dashed #a72126;
  padding: 0 0 2rem;
  margin: 0 0 3rem;
}

.news-list-txt {
  padding-top: 1.5rem;
}

.news-list-txt h3 {
  color: #a72126;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  line-height: 1.75rem;
  margin-bottom: 0;
  height: 85px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-list-txt p {
  border-top: 2px solid #a72126;
  font-size: 0.9375rem;
  letter-spacing: 0.125rem;
  line-height: 1.8rem;
  padding-top: 1.75rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.news-list-txt p span {
  padding-right: 1rem;
  margin-right: 0.5rem;
  position: relative;
}

.news-list-txt p span::before {
  content: '|';
  color: #dddddd;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

@media (min-width: 992px) {
  .news-list-txt {
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .news-list-item {
    padding: 0 2rem 2rem;
  }

  .news-list-pic {
    padding-left: 0;
    padding-right: 2.5rem;
  }

  .news-list-txt {
    padding-left: 0.5rem;
    padding-right: 0;
  }
}

.news-view-header {
  border-top: 1px solid #a72126;
  border-bottom: 1px solid #a72126;
  padding: 1rem 0;
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news-view-header h2 {
  color: #a72126;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
}

.news-view-header p {
  font-size: 0.9375rem;
  letter-spacing: 0.25rem;
  line-height: 1.8rem;
  margin-bottom: 0;
}

.news-view-header p span {
  padding-right: 1rem;
  margin-right: 0.5rem;
  position: relative;
}

.news-view-header p span::before {
  content: '|';
  color: #dddddd;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

@media (min-width: 992px) {
  .news-view-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.news-view-txt {
  margin-bottom: 2rem;
}

.news-view-txt h3 {
  color: #a72126;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.8rem;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}

.news-view-txt p {
  letter-spacing: 0.1rem;
  line-height: 1.8rem;
  word-break: break-all;
}

.news-view-txt a {
  color: #a72126;
  text-decoration: underline;
}

.news-view-txt a:hover,
.news-view-txt a:focus {
  color: #000000;
  text-decoration: underline;
}

@media (min-width: 992px) {
  .news-view-txt {
    margin-bottom: 0;
  }
}

/*------------------------------------*\
    AWA
\*------------------------------------*/
.awa-list {
  margin: 0 -1.25rem;
}

.awa-list-item {
  padding: 0 1.25rem;
  margin-bottom: 3.5rem;
}

.awa-list-pic a {
  border-radius: 50%;
}

.awa-list-pic a img {
  border-radius: 50%;
}

.awa-list-txt {
  text-align: center;
  padding-top: 2rem;
}

.awa-list-txt h3 {
  color: #a72126;
  font-size: 1.3755rem;
  font-weight: bold;
  line-height: 1.5rem;
  margin-bottom: 0;
}

.awa-list-txt h3 span {
  display: block;
  color: #000000;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.awa-view-header {
  margin-bottom: 4rem;
}

.awa-view-header-tit h2 {
  color: #000000;
  font-size: 0.875rem;
  letter-spacing: 0.2rem;
  line-height: 2rem;
  margin-bottom: 0;
}

.awa-view-header-tit h2 span {
  color: #a72126;
  font-family: "Noto Serif TC", serif;
  font-size: 2.625rem;
  letter-spacing: 0.5rem;
  line-height: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .awa-view-header-tit {
    padding-right: 2rem !important;
  }
}

.awa-view-header-info {
  padding: 2rem 1rem !important;
}

.awa-view-header-info .nav {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  padding-top: 2rem;
}

.awa-view-header-info .nav li {
  font-size: 1.125rem;
  letter-spacing: 0.125rem;
  margin-bottom: 0.75rem;
}

.awa-view-header-info .nav li:last-child {
  margin-bottom: 0;
}

.awa-view-header-info .nav li span {
  display: block;
  color: #000000;
  font-weight: bold;
  width: 120px;
  margin-right: 2.5rem;
  position: relative;
}

.awa-view-header-info .nav li span::after {
  content: '';
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

@media (min-width: 576px) {
  .awa-view-header-info .nav li span {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .awa-view-header-info {
    padding: 0 !important;
    padding-right: 2rem !important;
  }

  .awa-view-header-info .nav {
    border-top: none;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    padding-top: 0;
    padding-left: 6rem;
  }
}

.awa-view-content h4 {
  color: #a72126;
  font-size: 1.3125rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  margin-bottom: 1.25rem;
}

.awa-view-content p {
  letter-spacing: 0.075rem;
  line-height: 1.8rem;
  margin-bottom: 1.5rem;
}

.awa-content-header {
  border-top: 1px solid #a72126;
  border-bottom: 1px solid #a72126;
  padding: 2rem 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.awa-content-header h2 {
  color: #a72126;
  font-size: 1.3125rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 2.125rem;
  margin-bottom: 0;
}

.awa-content-header h2 span {
  background-color: #a72126;
  width: 105px;
  height: 1px;
  margin-bottom: 0.5rem;
  margin-right: 1rem;
}

.awa-content-header p {
  letter-spacing: 0.1rem;
  line-height: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 0;
}

.awa-content-header-pic {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .awa-content-header {
    padding: 2rem 3rem;
  }

  .awa-content-header-pic {
    margin-bottom: 0;
  }
}

@media (min-width: 1880px) {
  .awa-content-header-pic {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 27%;
    -ms-flex: 0 0 27%;
    flex: 0 0 27%;
    max-width: 27%;
  }

  .awa-content-header-txt {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 73%;
    -ms-flex: 0 0 73%;
    flex: 0 0 73%;
    max-width: 73%;
    padding-left: 2rem;
  }
}

.awa-content-body {
  margin-top: 2rem;
}

.awa-content-body h2 {
  color: #a72126;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 2.125rem;
  margin-bottom: 0;
}

.awa-content-body h3 {
  color: #a72126;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0.125rem;
  line-height: 40px;
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.awa-content-body h3::before {
  content: '';
  width: 5px;
  height: 30px;
  background-color: #a72126;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.awa-content-body p {
  line-height: 2rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1.8rem;
}

.awa-content-body p b {
  color: #000000;
}

.awa-content-body p span {
  border: 1px solid #a72126;
  color: #a72126;
  font-size: 1.0625rem;
  padding: 0.1rem 1rem;
  margin-bottom: 1rem;
}

.awa-content-body img {
  margin-bottom: 2rem;
}

.awa-content-body .title {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}

.awa-content-body .title b {
  display: inline-block;
  background-color: #a72126;
  color: #ffffff;
  font-size: 1.125rem;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 45px;
  width: 165px;
  height: 45px;
}

.awa-content-body .title span {
  color: #a72126;
  line-height: 2rem;
  padding-top: 1rem;
}

.awa-content-body .title p {
  margin-top: 1rem;
}

.awa-content-body .text {
  border-left: 1px solid #a72126;
  padding-left: 2rem;
  margin-bottom: 3rem;
}

.awa-content-body .text p:last-child {
  margin-bottom: 0;
}

.awa-content-body .list {
  background-color: #ededed;
  padding: 2rem 1rem;
  margin-bottom: 3rem;
}

.awa-content-body .list h4 {
  color: #a72126;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.awa-content-body .list ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.awa-content-body .list ul li {
  color: #000000;
  margin-bottom: 0.25rem;
}

.awa-content-body .list ul li:last-child {
  margin-bottom: 0;
}

.awa-content-body .list ul li a {
  color: #a72126;
  text-decoration: underline;
}

.awa-content-body .list ul li a:hover,
.awa-content-body .list ul li a:focus {
  color: #000000;
}

.awa-content-body .btn {
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.awa-content-body .btn span {
  background: url(../images/awa-arrow-red.svg);
  width: 15px;
  height: 15px;
  margin-left: 1rem;
}

.awa-content-body .btn span:first-child {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-left: 0;
  margin-right: 1rem;
}

.awa-content-body .btn:hover span,
.awa-content-body .btn:focus span {
  background: url(../images/awa-arrow-black.svg);
}

@media (min-width: 992px) {
  .awa-content-body {
    padding: 3rem;
    margin-top: 0;
  }

  .awa-content-body .title span {
    padding-top: 0;
    padding-left: 1rem;
  }

  .awa-content-body .list {
    padding: 1.5rem 2rem;
  }
}

/*------------------------------------*\
    ACTIVITY
\*------------------------------------*/
.activity-info>p {
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 2rem;
}

.activity-info>p b {
  color: #000000;
}

.activity-info .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 2.5rem 0 5rem;
}

.activity-info .nav li {
  padding-bottom: 2rem;
}

.activity-info .nav li+li {
  border-top: 1px dashed #a72126;
  padding-top: 2rem;
  padding-bottom: 0;
}

.activity-info .nav li h3 {
  color: #a72126;
  font-size: 0.9375rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.activity-info .nav li p {
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .activity-info .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .activity-info .nav li {
    width: 50%;
    padding: 0 4rem 0 2rem;
  }

  .activity-info .nav li+li {
    border-top: none;
    border-left: 1px dashed #a72126;
    padding: 0 2rem 0 4rem;
  }
}

.activity-list-item {
  margin-bottom: 2rem;
}

.activity-list-txt {
  padding: 1.5rem 1.25rem;
}

.activity-list-txt h3 {
  border-bottom: 1px dashed #a72126;
  color: #a72126;
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
  line-height: 1.75rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
  height: 63px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.activity-list-txt p {
  font-size: 0.9375rem;
  letter-spacing: 0.125rem;
  line-height: 1.8rem;
  margin-bottom: 0;
  height: 55px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.activity-list-txt p span {
  padding-right: 1rem;
  margin-right: 0.5rem;
  position: relative;
}

.activity-list-txt p span::before {
  content: '|';
  color: #dddddd;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.activity-view-header {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 2rem 0;
  margin-bottom: 4rem;
}

.activity-view-header .row {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .activity-view-header .row {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.activity-view-header-tit h2 {
  color: #a72126;
  font-size: 1.3125rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  line-height: 2rem;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.activity-view-header-tit h2 .badge {
  color: #ffffff;
  font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 0.875rem;
  letter-spacing: normal;
  line-height: 30px;
  height: 30px;
  position: relative;
  bottom: auto;
  left: auto;
  margin-right: 1rem;
}

@media (min-width: 1200px) {
  .activity-view-header-tit {
    padding-right: 3rem !important;
  }

  .activity-view-header-tit h2 {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.activity-view-header-info {
  padding: 2rem 0 !important;
}

@media (min-width: 1200px) {
  .activity-view-header-info {
    padding: 0 !important;
  }
}

.activity-view-header-info .nav {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.activity-view-header-info .nav li {
  font-size: 1.125rem;
  text-align: center;
  letter-spacing: 0.125rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.activity-view-header-info .nav li:last-child {
  margin-bottom: 0;
}

.activity-view-header-info .nav li span {
  color: #000000;
  font-size: 1.0625rem;
  font-weight: bold;
}

@media (min-width: 576px) {
  .activity-view-header-info .nav li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
  }

  .activity-view-header-info .nav li span {
    text-align: left;
    width: 120px;
    margin-right: 2.5rem;
    position: relative;
  }

  .activity-view-header-info .nav li span::after {
    content: '';
    width: 1px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0.3rem;
    right: 0;
  }

  .activity-view-header-info .nav li:last-child span {
    padding-right: 5rem;
  }
}

@media (min-width: 1200px) {
  .activity-view-header-info .nav {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.activity-view-header-info .quan {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.activity-view-header-info .quan .form .form-group {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-bottom: 0;
}

.activity-view-header-info .quan .form .col-form-label {
  letter-spacing: 0.1rem;
  white-space: nowrap;
  margin-right: 1.5rem;
}

.activity-view-header-info .quan .form .form-control {
  width: 75px;
}

.activity-view-header-info .quan .price {
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
  margin-top: 2rem;
}

.activity-view-header-info .quan .price b {
  color: #a72126;
  font-size: 1.875rem;
  letter-spacing: 0.1rem;
  margin-right: 0.5rem;
}

@media (min-width: 576px) {
  .activity-view-header-info .quan {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .activity-view-header-info .quan .price {
    margin-top: 0;
    margin-left: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .activity-view-header-info .quan .form {
    width: 30%;
  }

  .activity-view-header-info .quan .price {
    width: 70%;
  }
}

.activity-view-header-btn {
  text-align: center;
}

.activity-view-header-btn a {
  border: 1px solid #a72126;
  background-color: #a72126;
  border-radius: 25px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.125rem;
  line-height: 50px;
  width: 220px;
  height: 50px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.activity-view-header-btn a:hover,
.activity-view-header-btn a:focus {
  background-color: #ffffff;
  color: #a72126;
}

@media (min-width: 1200px) {
  .activity-view-header-btn {
    border-left: 1px dashed rgba(0, 0, 0, 0.5);
    border-right: 1px dashed rgba(0, 0, 0, 0.5);
    padding: 0 4rem;
    width: auto;
  }
}

@media (min-width: 1200px) {
  .activity-view-header-secondary .activity-view-header-tit {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
  }

  .activity-view-header-secondary .activity-view-header-info {
    border-left: 1px dashed rgba(0, 0, 0, 0.5);
    padding-left: 2rem !important;
    padding-right: 0 !important;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 45%;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
  }

  .activity-view-header-secondary .activity-view-header-btn {
    border-left: none;
  }
}

.activity-view-tit {
  border-top: 1px solid #a72126;
  padding-top: 2rem;
  margin-bottom: 3rem;
}

.activity-view-tit h2 {
  color: #a72126;
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 2rem;
  text-align: center;
  margin-bottom: 0;
}

.activity-view-tit h2 span {
  font-size: 1.0625rem;
  font-weight: normal;
}

.activity-view-txt {
  margin-top: 2rem;
}

.activity-view-txt h4 {
  color: #a72126;
  font-size: 1rem;
  font-weight: bold;
}

.activity-view-txt p {
  letter-spacing: 0.05rem;
  line-height: 1.8rem;
  margin-bottom: 2.25rem;
}

.activity-view-txt p b {
  color: #a72126;
}

.activity-view-txt .note {
  position: relative;
  padding-left: 1.5rem;
}

.activity-view-txt .note::before {
  content: '◆';
  color: #a72126;
  position: absolute;
  left: 0;
}

.activity-view-txt .date {
  color: #a72126;
  font-size: 1.0625rem;
}

.activity-view-txt .date span {
  color: #020202;
  letter-spacing: 0.1rem;
  width: 120px;
  margin-right: 2.5rem;
  position: relative;
}

.activity-view-txt .date span::after {
  content: '';
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

@media (min-width: 992px) {
  .activity-view-txt {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .activity-view-pic {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 44%;
    -ms-flex: 0 0 44%;
    flex: 0 0 44%;
    max-width: 44%;
  }

  .activity-view-pic-secondary {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .activity-view-txt {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 56%;
    -ms-flex: 0 0 56%;
    flex: 0 0 56%;
    max-width: 56%;
    padding-left: 3rem;
  }

  .activity-view-txt-secondary {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
  }
}

.activity-view-desc h3 {
  border-bottom: 1px solid #a72126;
  margin: 3rem 0;
}

.activity-view-desc h3 span {
  background-color: #a72126;
  color: #ffffff;
  font-size: 1.125rem;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 40px;
  width: 300px;
  height: 40px;
}

.activity-view-desc h4 {
  color: #a72126;
  font-size: 1.3125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.activity-view-desc p {
  letter-spacing: 0.05rem;
  line-height: 1.8rem;
  margin-bottom: 2rem;
}

.activity-view-desc p b {
  color: #a72126;
  margin-bottom: 0.25rem;
}

.activity-view-desc p:last-child {
  margin-bottom: 0;
}

.activity-performance .activity-view-header-info {
  padding-bottom: 0 !important;
}

.activity-sidelights .activity-list-txt h3 {
  border-bottom: none;
}

.activity-sidelights .activity-view-header {
  border-top: none;
  padding-top: 0;
}

.activity-sidelights .activity-view-header-tit h2 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.activity-mobile {
  min-height: 600px;
}

.activity-mobile-wrap {
  background-color: #ffffff;
  padding: 0.5rem;
}

.activity-mobile-content {
  border: 1px solid #a72126;
  padding: 2rem 1rem;
}

.activity-mobile-header {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.activity-mobile-header h2 {
  font-size: 0.9375rem;
  letter-spacing: 0.1rem;
}

.activity-mobile-header h2 span {
  display: block;
  color: #a72126;
  font-family: "Noto Serif TC", serif;
  font-size: 1.6875rem;
  margin-left: -1rem;
  margin-bottom: 0.75rem;
}

.activity-mobile-header a {
  border-bottom: 1px solid #000000;
  color: #000000;
  font-size: 0.875rem;
  letter-spacing: 0.125rem;
  padding-bottom: 0.25rem;
}

.activity-mobile-header a:hover,
.activity-mobile-header a:focus {
  border-bottom: 1px solid #a72126;
  color: #a72126;
}

.activity-mobile-header-link {
  text-align: right;
}

.activity-mobile-body p {
  line-height: 1.8rem;
  margin-bottom: 2.5rem;
}

.activity-mobile-body .form .form-control {
  color: #000000;
  font-size: 1.125rem;
}

.activity-mobile-body .form .form-control::-webkit-input-placeholder {
  font-size: 1rem;
}

.activity-mobile-body .form .form-control::-moz-placeholder {
  font-size: 1rem;
}

.activity-mobile-body .form .form-control:-ms-input-placeholder {
  font-size: 1rem;
}

.activity-mobile-body .form .form-control::-ms-input-placeholder {
  font-size: 1rem;
}

.activity-mobile-body .form .form-control::placeholder {
  font-size: 1rem;
}

.activity-mobile-body .form .send {
  display: block;
  border: 1px solid #a72126;
  color: #a72126;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 45px;
  height: 45px;
  margin-top: 1rem;
}

.activity-mobile-body .form .send:hover,
.activity-mobile-body .form .send:focus {
  background-color: #a72126;
  color: #ffffff;
}

.activity-mobile-body .form .nav {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0.5rem 0 1.5rem;
}

.activity-mobile-body .form .nav li {
  font-size: 0.9375rem;
}

.activity-mobile-body .form .nav li a {
  border-left: 1px solid rgba(0, 0, 0, 0.125);
  color: #a72126;
  padding-left: 0.5rem;
  margin-left: 0.5rem;
}

.activity-mobile-body .form .nav li a:hover,
.activity-mobile-body .form .nav li a:focus {
  text-decoration: underline;
}

.activity-mobile-body .form .btn {
  width: 100%;
}

@media (min-width: 576px) {
  .activity-mobile-body .form .col-form-label {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    padding-top: 0.5rem;
  }

  .activity-mobile-body .form .send {
    margin-top: 0;
    margin-left: 1rem;
  }
}

@media (min-width: 768px) {
  .activity-mobile-wrap {
    width: 655px;
    margin: 0 auto;
  }

  .activity-mobile-content {
    padding: 3rem 2rem;
  }
}

@media (min-width: 1880px) {
  .activity-mobile-wrap {
    position: absolute;
    top: -120px;
    margin-bottom: -120px;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .activity-mobile-content {
    padding: 6rem 7rem;
  }
}

.activity-form {
  min-height: 800px;
}

.activity-form-wrap {
  background-color: #ffffff;
  padding: 0.5rem;
}

.activity-form-content {
  border: 1px solid #a72126;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .activity-form-content {
    padding: 3rem 2rem;
  }
}

@media (min-width: 1440px) {
  .activity-form-wrap {
    width: 1280px;
    margin: 0 auto;
  }
}

@media (min-width: 1880px) {
  .activity-form-wrap {
    position: absolute;
    top: -120px;
    margin-bottom: -120px;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .activity-form-content {
    padding: 4.5rem 8rem;
  }
}

.activity-form-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
}

.activity-form-session {
  margin-bottom: 2rem;
}

.activity-form-session h3 {
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  font-size: 1.0625rem;
  margin-bottom: 0;
}

.activity-form-session h3 span {
  display: block;
  color: #a72126;
  font-family: "Noto Serif TC", serif;
  font-size: 1.6875rem;
  margin-left: -1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1200px) {
  .activity-form-session {
    padding-right: 5rem !important;
    margin-bottom: 0;
  }
}

.activity-form-tit h2 {
  color: #666666;
  font-size: 1.3125rem;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.activity-form-tit h2 .badge {
  background-color: #666666;
  color: #ffffff;
  font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 0.875rem;
  letter-spacing: normal;
  line-height: 30px;
  height: 30px;
  position: relative;
  bottom: auto;
  left: auto;
  margin-right: 1rem;
}

.activity-form-info {
  padding: 2rem 0 0 !important;
}

@media (min-width: 1200px) {
  .activity-form-info {
    padding: 0 !important;
  }
}

.activity-form-info .nav {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.activity-form-info .nav li {
  letter-spacing: 0.1rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.activity-form-info .nav li:last-child {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .activity-form-info .nav li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .activity-form-info .nav li span {
    text-align: left;
    width: 120px;
    margin-right: 2rem;
    position: relative;
  }

  .activity-form-info .nav li span::after {
    content: '';
    width: 1px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0.3rem;
    right: 0;
  }

  .activity-form-info .nav li:last-child span {
    padding-right: 5rem;
  }
}

@media (min-width: 1200px) {
  .activity-form-info .nav {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 2rem !important;
  }
}

.activity-form-body .form .form-row {
  margin: 0 -2rem;
}

.activity-form-body .form .form-group {
  padding: 0 2rem;
}

.activity-form-body .form .form-radio {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2rem;
}

.activity-form-body .form .form-radio span {
  display: block;
  color: #a72126;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.activity-form-body .form .col-form-label {
  font-size: 1.0625rem;
  letter-spacing: 0.125rem;
}

.activity-form-body .form .note {
  margin-top: 1rem !important;
}

.activity-form-body .form .note p {
  font-size: 1rem;
  line-height: 1.8rem;
  letter-spacing: 0.05rem;
}

.activity-form-body .form .note p span {
  position: relative;
  padding-left: 1.5rem;
}

.activity-form-body .form .note p span::before {
  content: '◆';
  color: #a72126;
  position: absolute;
  left: 0;
}

.activity-form-body .form .btn-wrap {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3rem;
}

@media (min-width: 576px) {
  .activity-form-body .form .form-radio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .activity-form-body .form .form-radio span {
    display: inline-block;
    margin-bottom: 0;
  }

  .activity-form-body .form .form-check-inline {
    margin-right: 3rem;
  }
}

@media (min-width: 768px) {
  .activity-form-body .form .textarea-wrap .col-form-label {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .activity-form-body .form .textarea-wrap .textarea {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 992px) {
  .activity-form-body .form .textarea-wrap .col-form-label {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 11.5%;
    -ms-flex: 0 0 11.5%;
    flex: 0 0 11.5%;
    max-width: 11.5%;
  }

  .activity-form-body .form .textarea-wrap .textarea {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 87.5%;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
}

@media (min-width: 576px) {
  .activity-form-body.practice-form .form .btn {
    width: 410px;
  }
}

/*------------------------------------*\
    DONATE
\*------------------------------------*/
.donate {
  padding-bottom: 0;
  position: relative;
}

.donate-content {
  border: 1px solid #a72126;
  background-color: #ffffff;
  padding: 2rem 1rem;
  padding-top: 225px;
  position: relative;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: hidden;
}

@media (min-width: 768px) {
  .donate-content {
    padding: 3rem 2rem;
    padding-top: 225px;
  }
}

@media (min-width: 992px) {
  .donate-content {
    padding-top: 75px;
  }
}

@media (min-width: 1440px) {
  .donate-content {
    width: 1300px;
    padding: 6rem 12rem;
    top: -155px;
    margin-bottom: -155px;
    left: auto;
    right: auto;
  }
}

.donate-content .menu {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  margin-bottom: 0;
}

.donate-content .regular {
  display: none;
}

.donate-content .regular.active {
  display: block;
}

.donate-content .contact-txt {
  margin-top: 0rem;
}

.donate-step {
  margin: 3.5rem 0;
}

.donate-step .step {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.donate-step .step li {
  width: 100%;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.donate-step .step li::after {
  content: "\f063";
  color: #d6d6d6;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -2rem;
}

.donate-step .step li b {
  font-weight: normal;
  width: 160px;
}

.donate-step .step li span {
  position: relative;
}

.donate-step .step li span::before,
.donate-step .step li span::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #d6d6d6;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

.donate-step .step li span::before {
  left: -50%;
}

.donate-step .step li span::after {
  right: -50%;
}

.donate-step .step li span b {
  border-radius: 50%;
  background-color: #d6d6d6;
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: normal;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  position: relative;
  z-index: 2;
  margin-right: 1rem;
}

.donate-step .step li:first-child span::before {
  display: none;
}

.donate-step .step li:last-child {
  margin-bottom: 0;
}

.donate-step .step li:last-child::after {
  display: none;
}

.donate-step .step li:last-child span::after {
  display: none;
}

.donate-step .step li.active span b {
  background-color: #a72126;
}

@media (min-width: 576px) {
  .donate-step .step {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .donate-step .step li {
    text-align: center;
    width: 20%;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .donate-step .step li::after {
    display: none;
  }

  .donate-step .step li span {
    width: 100%;
    margin-bottom: 1rem;
  }

  .donate-step .step li span::before,
  .donate-step .step li span::after {
    display: block;
  }

  .donate-step .step li span b {
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .donate-step .step {
    width: 830px;
    margin: 0 auto;
  }
}

.donate-form-tit {
  margin-bottom: 2rem;
}

.donate-form-tit h2 {
  color: #231815;
  font-family: "Noto Serif TC", serif;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0;
}

.donate-form-tit h2 b {
  color: #a8a8a8;
  font-size: 1.5625rem;
  font-weight: normal;
}

.donate-form-tit h2 span {
  display: block;
  color: #666666;
  font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 0.9375rem;
  letter-spacing: normal;
  margin-top: 1rem;
  margin-left: 1.5rem;
}

@media (min-width: 576px) {
  .donate-form-tit h2 span {
    display: inline-block;
    margin-top: 0;
  }
}

.donate-form-item {
  margin-bottom: 3rem;
}

.donate-form-item .nav {
  border-top: 1px solid #a72126;
  border-bottom: 1px solid #a72126;
  padding: 1.5rem 0;
  margin-bottom: 3rem;
}

.donate-form-item .nav li {
  margin-bottom: 0.75rem;
}

.donate-form-item .nav li:last-child {
  margin-bottom: 0;
}

.donate-form-item .notify {
  color: #848484;
  font-size: 0.875rem;
  text-align: center;
}

.donate-form-total {
  border-top: 1px dashed #a72126;
  border-bottom: 1px dashed #a72126;
  padding: 0.75rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.donate-form-total>span {
  background-color: #a72126;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  line-height: 35px;
  width: 135px;
  height: 35px;
}

.donate-form-total p {
  font-size: 1.125rem;
  margin-left: 1rem;
  margin-bottom: 0;
}

.donate-form-total p span {
  color: #a72126;
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 1rem;
}

.donate-form-total p span b {
  font-size: 2.25rem;
}

@media (min-width: 576px) {
  .donate-form-total {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.donate-form .form .form-way-wrap {
  margin: 0 0 0.5rem;
}

.donate-form .form .form-way-wrap .form-check {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
}

.donate-form .form .form-way-wrap .form-check .form-check-input {
  display: none;
}

.donate-form .form .form-way-wrap .form-check .form-check-input+.form-check-label {
  background-color: #ffffff;
  color: #a8a8a8;
  font-size: 1.3125rem;
  text-align: center;
  letter-spacing: 0.5rem;
  line-height: 50px;
  width: 100%;
  height: 50px;
  cursor: pointer;
}

.donate-form .form .form-way-wrap .form-check .form-check-input+.form-check-label.active {
  background-color: #a72126;
  color: #ffffff;
}

.donate-form .form .form-way-wrap .form-check .form-check-input:checked+.form-check-label {
  background-color: #a72126;
  color: #ffffff;
}

.donate-form .form .form-price-wrap {
  border-bottom: 1px dashed #a72126;
  margin: 0;
}

.donate-form .form .form-price-wrap .form-group {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 2rem 1rem 1rem;
  margin-bottom: 0.25rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.donate-form .form .form-price-wrap .col-form-label span {
  font-size: 1.3125rem;
  margin-left: 0.5rem;
}

.donate-form .form .form-price-wrap .form-check-wrap {
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.donate-form .form .form-price-wrap .form-check {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.donate-form .form .form-price-wrap .form-check:last-child {
  margin-bottom: 0;
}

.donate-form .form .form-price-wrap .form-check .note {
  display: block;
  color: #a72126;
  font-size: 1.0625rem;
  margin-left: 1rem;
}

.donate-form .form .form-price-wrap .form-check-input {
  margin-right: 1rem;
}

.donate-form .form .form-price-wrap .form-check-label {
  color: #a72126;
  font-size: 1.3125rem;
  white-space: nowrap;
}

.donate-form .form .form-price-wrap .form-check-label span {
  font-size: 2rem;
  font-weight: bold;
}

.donate-form .form .form-price-wrap p {
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .donate-form .form .form-price-wrap p {
    margin-left: 1rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .donate-form .form .form-price-wrap .form-group {
    padding: 2rem;
  }
}

.donate-form .form .note {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-align: left;
}

@media (min-width: 992px) {
  .donate-form .form .note {
    margin-top: 0;
  }
}

.donate-form .btn-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 768px) {
  .donate-form .btn-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 0;
  }
}

.donate-form .btn {
  line-height: 50px;
  width: 250px;
  height: 50px;
  padding: 0;
}

.donate-form .btn span {
  background-image: url(../images/donate-arrow-white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}

.donate-form .btn:hover span,
.donate-form .btn:focus span {
  background-image: url(../images/donate-arrow-red.svg);
}

.donate-form .btn-secondary span {
  background-image: url(../images/donate-arrow-red.svg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.donate-form .btn-secondary:hover span,
.donate-form .btn-secondary:focus span {
  background-image: url(../images/donate-arrow-white.svg);
}

.donate-form .btn+.btn {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .donate-form .btn+.btn {
    margin-top: 0;
    margin-left: 1rem;
  }
}

.donate-list {
  margin: 3.5rem -2rem;
}

.donate-list-item {
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.donate-list-pic {
  border: 1px solid #a72126;
}

.donate-list-txt {
  text-align: center;
  padding: 1.5rem 1rem;
}

.donate-list-txt h3 {
  color: #231815;
  font-size: 1.3125rem;
}

.donate-list-txt p {
  color: #a72126;
  margin-bottom: 0;
}

.donate-list-txt p b {
  font-size: 1.3125rem;
  letter-spacing: 0.1rem;
}

@media (min-width: 1440px) {
  .donate-list {
    margin: 0 -2rem;
  }

  .donate-list-wrap {
    padding: 10rem 9rem;
  }
}

.donate-table {
  margin: 3.5rem 0;
}

.donate-table h2 {
  color: #000000;
  font-size: 1.125rem;
  text-align: right;
  line-height: 2rem;
  letter-spacing: 0.25rem;
  margin-bottom: 0.5rem;
}

.donate-table .table td {
  letter-spacing: normal;
}

.donate-fill {
  min-height: 950px;
}

.donate-products {
  min-height: 800px;
}

.donate-products .donate-list {
  margin: 3.5rem 0;
}

.donate-products .activity-form-session h3 {
  border-right: none;
}

/*------------------------------------*\
    CONTACT
\*------------------------------------*/
.contact {
  background: url(../images/bg.jpg) center bottom no-repeat #ffffff;
  position: relative;
}

.contact::before {
  content: '';
  width: 300px;
  height: 407px;
  background: url(../images/contact-bg-s.png) right bottom no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1010;
  display: none;
}

@media (min-width: 768px) {
  .contact:before {
    display: block;
  }
}

@media (min-width: 1440px) {
  .contact::before {
    width: 450px;
    height: 610px;
    background: url(../images/contact-bg.png) right bottom no-repeat;
    right: 9rem;
  }
}

.contact-content {
  border: 1px solid #a72126;
  border-top: 10px solid #a72126;
  background-color: #ffffff;
  padding: 2rem 1rem;
  position: relative;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-content {
    padding: 3rem 2rem;
  }
}

@media (min-width: 1440px) {
  .contact-content {
    width: 1300px;
    padding: 6rem 12rem;
    top: -155px;
    margin-bottom: -155px;
    left: auto;
    right: auto;
  }
}

.contact-content h2 {
  color: #a72126;
  font-size: 1.5rem;
  letter-spacing: 0.125rem;
  padding-top: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

.contact-content h2::before {
  content: '';
  width: 45px;
  height: 3px;
  background-color: #a72126;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-content h2 span {
  display: block;
  color: #666666;
  margin-top: 0.5rem;
}

.contact-content .menu {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin-bottom: 0;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-info h3 {
  color: #a72126;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-info .nav li {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.contact-info .nav li span {
  letter-spacing: 1rem;
  margin-right: 1rem;
  width: 90px;
  position: relative;
}

.contact-info .nav li span::after {
  content: '';
  width: 1px;
  height: 15px;
  background-color: #a72126;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.contact-info .nav li.mail span {
  letter-spacing: 0.05rem;
}

.contact-info p {
  line-height: 2rem;
  margin-bottom: 0.5rem;
}

.contact-info .comm a {
  color: #a72126;
  font-size: 1.5rem;
  padding-right: 1.5rem;
}

.contact-form-tit {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-form-tit p {
  line-height: 1.8rem;
}

.contact-form-tit p span {
  color: #a72126;
}

.contact-txt {
  margin-top: 2rem;
}

.contact-txt p {
  line-height: 2.125rem;
  margin-bottom: 2.5rem;
}

.promotion .contact-content {
  padding-top: 150px;
}

@media (min-width: 992px) {
  .promotion .contact-content {
    padding-top: 75px;
  }
}

.promotion .contact-info .nav li {
  font-size: 1rem;
}

/*------------------------------------*\
    UNIT
\*------------------------------------*/
.unit-item {
  margin-bottom: 3rem;
}

.unit-pic {
  border: 1px solid #a72126;
}

.unit-txt {
  margin-top: 1.25rem;
}

.unit-txt h3 {
  color: #a72126;
  font-size: 1.125rem;
  line-height: 1.8rem;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-bottom: 0;
}

/*------------------------------------*\
    LOGIN
\*------------------------------------*/
.login {
  background: url(../images/bg.jpg) center bottom no-repeat #ffffff;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1880px) {
  .login {
    position: relative;
  }

  .login::before {
    content: '';
    width: 410px;
    height: 185px;
    background: url(../images/login-cloud.png);
    position: absolute;
    left: 0;
    top: 55%;
    z-index: 2;
  }

  .login::after {
    content: '';
    width: 500px;
    height: 200px;
    background: url(../images/login-cloud-02.png);
    position: absolute;
    right: 0;
    top: 44%;
    z-index: 2;
  }
}

.login>.container {
  max-width: 100%;
}

@media (min-width: 1440px) {
  .login>.container {
    max-width: 90%;
  }
}

.login-content {
  background-color: #ffffff;
  position: relative;
}

.login-content h2 {
  font-size: 1.3125rem;
  letter-spacing: 0.25rem;
  margin-bottom: 3rem;
}

.login-content h2 span {
  display: block;
  color: #a72126;
  font-family: "Noto Serif TC", serif;
  font-size: 1.75rem;
  letter-spacing: normal;
  margin-bottom: 0.5rem;
  margin-left: -1rem;
}

.login-content p {
  letter-spacing: 0.1rem;
  line-height: 1.8rem;
  margin-bottom: 3rem;
}

.login-content .form .form-group {
  padding: 0;
}

.login-content .form .col-form-label {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.login-content .nav {
  margin: 2rem 0;
}

.login-content .nav li+li {
  position: relative;
  padding-left: 1rem;
  margin-left: 1rem;
}

.login-content .nav li+li::before {
  content: '';
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.login-content .btn {
  line-height: 45px;
  height: 45px;
  width: 100%;
  padding: 0 !important;
}

@media (min-width: 992px) {
  .login-content {
    padding: 3rem 0;
  }

  .login-content::before {
    content: '';
    width: 1px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 3rem;
    bottom: 3rem;
    display: none;
  }
}

@media (min-width: 1880px) {
  .login-content {
    width: 1480px;
    margin: 0 auto;
    padding: 6.5rem 7rem;
  }

  .login-content::before {
    top: 6.5rem;
    bottom: 6.5rem;
  }
}

.login-join {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.login-join .btn {
  margin-bottom: 0.25rem;
}

/*------------------------------------*\
    FORGET
\*------------------------------------*/
.forget .login-content {
  border: 1px solid #aaaaaa;
  padding: 2rem 1rem;
}

.forget .login-content::before {
  display: none;
}

.forget .login-content p {
  margin-bottom: 2rem;
}

.forget .login-content .btn-wrap {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .forget .login-content {
    width: 655px;
    margin: 0 auto;
    padding: 4rem;
  }
}

@media (min-width: 992px) {
  .forget .login-content {
    padding: 7rem 6rem;
  }
}

/*------------------------------------*\
    JOIN
\*------------------------------------*/
.join {
  background: url(../images/bg-02.jpg) center bottom no-repeat #ffffff;
}

@media (min-width: 1880px) {
  .join::before {
    top: 25%;
  }

  .join::after {
    top: 33%;
  }
}

.join .login-content::before {
  display: none;
}

.join .login-item {
  padding: 2rem 1rem;
}

@media (min-width: 992px) {
  .join .login-item {
    padding: 3rem;
  }
}

@media (min-width: 1200px) {
  .join .login-item {
    padding: 0 3rem;
  }
}

@media (min-width: 1880px) {
  .join .login-item {
    padding: 0 6.5rem;
  }
}

.join h3 {
  color: #a72126;
  font-size: 1.125rem;
  font-weight: bold;
}

.join h3 span {
  background-color: #ffffff;
  padding-right: 1rem;
  position: relative;
  z-index: 2;
}

.join h3.welfare {
  position: relative;
  margin-bottom: 1rem;
}

.join h3.welfare::before {
  content: '';
  width: auto;
  height: 1px;
  background-color: #a72126;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.join p {
  letter-spacing: normal;
  margin-bottom: 1.5rem;
}

.join p span {
  color: #a72126;
  font-weight: bold;
}

.join hr {
  margin-bottom: 2rem;
  border-top: 1px solid #a72126;
}

.join .ceremony {
  border: 1px solid #a72126;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.join .ceremony h3 {
  font-size: 1rem;
}

.join .ceremony p {
  margin-bottom: 0;
}

.join .ceremony-item {
  padding-bottom: 3rem;
}

.join .ceremony-item+.ceremony-item {
  border-top: 1px solid #a72126;
  padding-top: 3rem;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .join .ceremony {
    padding: 2rem 3rem;
  }

  .join .ceremony-item {
    padding-bottom: 0;
  }

  .join .ceremony-item+.ceremony-item {
    border-top: none;
    border-left: 1px solid #a72126;
    padding-top: 0;
    padding-left: 3rem;
  }
}

@media (min-width: 1440px) {
  .join .ceremony {
    padding: 2rem 5rem;
  }

  .join .ceremony-item+.ceremony-item {
    padding-left: 6rem;
  }
}

.join .btn {
  letter-spacing: 0.25rem;
  line-height: 45px;
  height: 45px;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}

.join .btn span {
  background: url(../images/join-arrow.svg) no-repeat;
  width: 20px;
  height: 20px;
  margin-left: 0.25rem;
}

.join .btn:hover,
.join .btn:focus,
.join .btn:not(:disabled):not(.disabled):active:focus {
  border: 1px solid #231815;
  background-color: #231815;
  color: #ffffff;
}

@media (min-width: 992px) {
  .join .btn {
    margin-bottom: 0;
  }
}

/*------------------------------------*\
    REGISTER
\*------------------------------------*/
.register .container {
  padding: 0;
}

.register .login-item {
  position: relative;
  z-index: 3;
}

.register h3 {
  color: #a72126;
  font-size: 1.3125rem;
  position: relative;
  margin-bottom: 1.5rem;
}

.register h3::before {
  content: '';
  background-color: #a72126;
  width: auto;
  height: 0.5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.register h3 span {
  background-color: #ffffff;
  font-weight: bold;
  padding-right: 1rem;
  position: relative;
  z-index: 2;
}

.register .form .form-group {
  padding: 0 1rem;
}

.register .form .col-form-label {
  border-bottom: none;
}

.register .form .form-radio {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.register .form .form-radio span {
  display: block;
  color: #a72126;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.register .form .form-check-inline:last-child {
  margin-right: 0;
}

.register .form .btn-wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3rem;
}

.register .form .btn {
  width: 100%;
}

.register .form .btn:hover,
.register .form .btn:focus,
.register .form .btn:not(:disabled):not(.disabled):active:focus {
  border: 1px solid #a72126;
  background-color: transparent;
  color: #a72126;
}

.register .form .note {
  margin-top: 3rem;
}

.register .form .note a {
  color: #a72126;
  text-decoration: underline;
}

.register .form .note a:hover,
.register .form .note a:focus {
  color: #a72126;
  text-decoration: underline;
}

@media (min-width: 576px) {
  .register .form .form-radio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .register .form .form-radio span {
    display: inline-block;
    margin-bottom: 0;
  }

  .register .form .btn {
    width: 450px;
  }
}

/*------------------------------------*\
    FINISH
\*------------------------------------*/
.finish {
  background: url(../images/bg.jpg) center bottom no-repeat #ffffff;
}

.finish-content {
  background-color: #ffffff;
  border: 1px solid #aaaaaa;
  padding: 2rem 1rem;
}

.finish-content h2 {
  font-size: 1.3125rem;
  letter-spacing: 0.25rem;
  text-align: center;
}

.finish-content h2 span {
  display: block;
  color: #a72126;
  font-family: "Noto Serif TC", serif;
  font-size: 1.75rem;
  letter-spacing: normal;
  margin-bottom: 0.5rem;
}

.finish-content p {
  line-height: 2rem;
  text-align: center;
  margin: 3.5rem 0;
}

.finish-content p span {
  color: #a72126;
}

.finish-content .btn {
  line-height: 45px;
  height: 45px;
  width: 100%;
}

@media (min-width: 576px) {
  .finish-content {
    padding: 3rem;
  }

  .finish-content h2 span {
    font-size: 2rem;
  }

  .finish-content .btn {
    width: 400px;
  }
}

@media (min-width: 992px) {
  .finish-content {
    width: 800px;
    margin: 0 auto;
    padding: 4.5rem 6rem;
  }
}

/*------------------------------------*\
    MEMBER
\*------------------------------------*/
.member {
  background: url(../images/bg-02.jpg) center bottom no-repeat #ffffff;
  padding-bottom: 0;
}

.member>.container {
  max-width: 100%;
}

@media (min-width: 1880px) {
  .member>.container {
    max-width: 1485px;
  }
}

.member-content {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.member-content h2 {
  font-size: 1.3125rem;
  letter-spacing: 0.25rem;
  text-align: center;
  margin-bottom: 3rem;
}

.member-content h2 span {
  display: block;
  color: #a72126;
  font-family: "Noto Serif TC", serif;
  font-size: 1.875rem;
  letter-spacing: normal;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .member-content {
    padding: 3rem;
  }
}

@media (min-width: 1880px) {
  .member-content {
    padding: 6rem 14rem;
  }
}

.member-menu {
  margin-bottom: 3rem;
}

.member-menu .nav li {
  width: 100%;
}

.member-menu .nav li a {
  display: block;
  border: 1px solid #ffffff;
  background-color: #bfbfbf;
  color: #ffffff;
  font-size: 1.125rem;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 50px;
  height: 50px;
}

.member-menu .nav li a:hover,
.member-menu .nav li a:focus,
.member-menu .nav li a.active {
  background-color: #a72126;
}

@media (min-width: 768px) {
  .member-menu .nav {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .member-menu .nav li {
    width: 25%;
  }
}

.member-list .card {
  border: none;
  margin-bottom: 1.5rem;
}

.member-list .card-header {
  border-bottom: none;
  background-color: transparent;
  margin-bottom: 0 !important;
  padding: 0;
}

.member-list .card-header .btn {
  color: #a72126;
  font-size: 1.0625rem;
  text-align: left;
  text-decoration: underline;
  letter-spacing: 0.1rem;
  padding: 0;
  width: 100%;
}

.member-list .card-header .btn span {
  width: 15px;
}

.member-list .card-header .btn span::before {
  content: '－';
  text-decoration: underline;
}

.member-list .card-header .btn:hover,
.member-list .card-header .btn:focus {
  text-decoration: underline;
}

.member-list .card-header .btn.collapsed {
  color: #a72126;
  text-decoration: none;
}

.member-list .card-header .btn.collapsed span::before {
  content: '＋';
  text-decoration: none;
}

.member-list .card-body {
  padding-left: 0;
  padding-right: 0;
}

.member-header {
  border-bottom: 1px solid #000000;
  padding: 2rem 0;
  margin-bottom: 1.25rem;
}

@media (min-width: 1440px) {
  .member-header-tit {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
  }

  .member-header-info {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .member-header-btn {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
  }
}

.member-header-tit h2 {
  color: #000000;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0.125rem;
  line-height: 2rem;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.member-header-tit h2 .badge {
  background-color: #000000;
  color: #ffffff;
  font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 0.875rem;
  letter-spacing: normal;
  line-height: 30px;
  height: 30px;
  position: relative;
  bottom: auto;
  left: auto;
  margin-right: 0.75rem;
}

@media (min-width: 768px) {
  .member-header-tit {
    padding-right: 1rem !important;
  }
}

.member-header-info {
  padding: 2rem 0 !important;
}

@media (min-width: 768px) {
  .member-header-info {
    padding: 0 !important;
  }
}

.member-header-info .nav {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.member-header-info .nav li {
  color: #666666;
  font-size: 1.125rem;
  letter-spacing: 0.125rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.member-header-info .nav li:last-child {
  margin-bottom: 0;
}

.member-header-info .nav li span {
  color: #000000;
  font-size: 1.0625rem;
}

@media (min-width: 576px) {
  .member-header-info .nav li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .member-header-info .nav li span {
    text-align: left;
    width: 120px;
    padding-right: 2.5rem;
    margin-right: 2.5rem;
    position: relative;
    white-space: nowrap;
  }

  .member-header-info .nav li span::after {
    content: '';
    width: 1px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0.3rem;
    right: 0;
  }

  .member-header-info .nav li:last-child span {
    padding-right: 5rem;
  }
}

.member-header-btn a {
  border: 1px solid #a72126;
  background-color: #a72126;
  border-radius: 25px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.125rem;
  line-height: 50px;
  width: 185px;
  height: 50px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.member-header-btn a.success {
  background-color: #a72126;
}

.member-header-btn a.fail {
  border: 1px solid #515151;
  background-color: #515151;
}

.member-header-btn a.end {
  border: 1px solid #231815;
  background-color: #231815;
}

@media (min-width: 768px) {
  .member-header-btn {
    padding-top: 1rem;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .member-header-btn {
    border-left: 1px dashed rgba(0, 0, 0, 0.5);
    border-right: 1px dashed rgba(0, 0, 0, 0.5);
    padding: 0 4rem;
    width: auto;
  }
}

.member-body-item {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
  padding-bottom: 1.5rem;
}

.member-body-item h3 {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
  color: #000000;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  height: 40px;
  margin-bottom: 1.5rem;
}

.member-body-item .form {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
  height: 40px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.member-body-item .form span {
  color: #515151;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-right: 0.5rem;
}

.member-body-item .form .form-check-inline {
  display: inline-block;
  margin-right: 0.25rem;
}

@media (min-width: 576px) {
  .member-body-item .form .form-check-inline {
    margin-right: 0.75rem;
  }

  .member-body-item .form span {
    margin-right: 1.5rem;
  }
}

@media (min-width: 992px) {
  .member-body-item .form {
    margin-top: 0;
  }

  .member-body-item .form span {
    margin-left: 3rem;
  }
}

.member-body-item .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.member-body-item .nav li {
  color: #231815;
  font-size: 1.0625rem;
  line-height: 2rem;
}

.member-body-item .nav li span {
  color: #515151;
  letter-spacing: 0.125rem;
  padding-right: 1.25rem;
  margin-right: 1rem;
  position: relative;
}

.member-body-item .nav li span::after {
  content: '';
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

@media (min-width: 576px) {
  .member-body-item .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .member-body-item .nav li {
    width: 50%;
  }

  .member-body-item .nav li:nth-child(odd) {
    width: 40%;
  }

  .member-body-item .nav li:nth-child(even) {
    width: 60%;
  }
}

.member-body-item-secondary .nav-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 576px) {
  .member-body-item-secondary .nav-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .member-body-item-secondary .nav-group {
    border-left: 1px dashed rgba(0, 0, 0, 0.25);
    padding-left: 3rem;
  }
}

@media (min-width: 576px) {
  .member-body-item-secondary .nav {
    width: 33.33%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .member-body-item-secondary .nav li:nth-child(odd),
  .member-body-item-secondary .nav li:nth-child(even) {
    width: 100%;
  }
}

.member-form .btn {
  background-color: #a72126;
  color: #ffffff;
}

/*------------------------------------*\
    FAQ
\*------------------------------------*/
.faq {
  margin-bottom: 3rem;
}

.faq>p {
  border-bottom: 1px solid #a72126;
  font-size: 1.0625rem;
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

.faq .card {
  border: none;
}

.faq .card-header {
  border-bottom: none;
  background-color: transparent;
  margin-bottom: 0 !important;
  padding: 0;
}

.faq .card-header .btn {
  border-bottom: 1px dashed #a72126;
  text-align: left;
  width: 100%;
  padding: 2rem 1.5rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.faq .card-header .btn:hover,
.faq .card-header .btn:focus {
  text-decoration: none;
}

.faq .card-header .btn::after {
  content: '';
  width: 25px;
  height: 25px;
  background: url(../images/faq-arrow.svg) no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  right: 0;
}

.faq .card-header .btn .num {
  position: relative;
}

.faq .card-header .btn .num::before {
  content: '';
  width: 45px;
  height: 45px;
  border: 1px solid #a72126;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq .card-header .btn .num::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #a72126;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq .card-header .btn .num b {
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 3;
}

.faq .card-header .btn .tit {
  color: #a72126;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  margin-top: 2rem;
  margin-left: -1rem;
}

.faq .card-header .btn.collapsed::after {
  -webkit-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.faq .card-header .btn.collapsed .tit {
  color: #666666;
  font-weight: normal;
}

.faq .card-body {
  border-bottom: 1px solid #a72126;
  padding: 2rem 0.5rem;
}

@media (min-width: 576px) {
  .faq .card-header .btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.5rem 1.5rem 2.5rem 2rem;
  }

  .faq .card-header .btn .num {
    margin-right: 1rem;
    margin-bottom: 0;
  }

  .faq .card-header .btn .tit {
    margin-top: 0;
    margin-left: 2rem;
  }
}

@media (min-width: 992px) {
  .faq .card-header .btn {
    padding: 2.5rem 1.5rem 2.5rem 4rem;
  }

  .faq .card-body {
    padding-left: 8.5rem;
  }
}