@charset "UTF-8";
/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * BANNER
 * MAIN
 * ABOUT
 * NEWS
 * ACTIVITY
 * DONATE
 **/
/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner::before, .banner::after {
  display: none;
}

.banner-txt .page-header p {
  font-family: "Noto Serif TC", serif;
  font-size: 1.4375rem;
  font-weight: 100;
  letter-spacing: 0.2rem;
}

.banner .swiper-container {
  position: relative;
}

.banner .swiper-slide {
  height: 500px;
}

.banner .swiper-slide .banner-pic {
  position: absolute;
  left: -50px;
  top: 0;
  width: calc(100% + 100px);
  height: 100%;
  -webkit-animation: hideTranslateBG 10s ease-out forwards;
          animation: hideTranslateBG 10s ease-out forwards;
}

.banner .swiper-slide .banner-pic::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 .swiper-slide .banner-pic img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 10s ease-out;
  transition: -webkit-transform 10s ease-out;
  -o-transition: transform 10s ease-out;
  transition: transform 10s ease-out;
  transition: transform 10s ease-out, -webkit-transform 10s ease-out;
}

.banner .swiper-slide-next {
  z-index: 2;
  -webkit-animation-name: showImage;
          animation-name: showImage;
}

.banner .swiper-slide-active {
  z-index: 2;
  -webkit-animation-name: hideImage;
          animation-name: hideImage;
}

.banner .swiper-slide-active .banner-pic {
  -webkit-animation: showTranslateBG 10s ease-out forwards;
          animation: showTranslateBG 10s ease-out forwards;
}

.banner .swiper-pagination {
  text-align: center;
  bottom: 3%;
  width: 100%;
  z-index: 3;
}

.banner .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid transparent;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  margin: 0 1rem;
  opacity: 1;
}

.banner .swiper-pagination-bullet-active {
  border: 1px solid #ffffff;
}

.banner .scroll {
  cursor: pointer;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  z-index: 4;
  display: none;
}

@media (min-width: 576px) {
  .banner .swiper-pagination {
    text-align: right;
    bottom: 7%;
  }
  .banner .scroll {
    display: block;
  }
}

@media (min-width: 992px) {
  .banner {
    padding: 0 1.5625rem;
  }
  .banner .swiper-slide {
    height: 745px;
  }
  .banner .swiper-bullet {
    margin: 0 1.5rem;
  }
}

@-webkit-keyframes showImage {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes showImage {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes hideImage {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hideImage {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes showTranslateBG {
  0% {
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes showTranslateBG {
  0% {
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes hideTranslateBG {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }
}

@keyframes hideTranslateBG {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
.index-main {
  background: url(../images/index-main-bg.jpg) center bottom no-repeat #ffffff;
  padding: 4.5rem 0;
}

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

@media (min-width: 1880px) {
  .index-main > .container {
    max-width: 1500px;
    padding: 0;
  }
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.index-about {
  font-family: "Noto Serif TC", serif;
  text-align: center;
}

.index-about-tit {
  margin-bottom: 2rem;
}

.index-about-tit h2 {
  color: #a72126;
  font-size: 2.625rem;
  line-height: 3rem;
  letter-spacing: 0.5rem;
  margin-bottom: 0.75rem;
}

.index-about-tit h2 span {
  display: block;
}

.index-about-tit p {
  color: #3a3a3a;
  font-size: 1.125rem;
  letter-spacing: 0.25rem;
  margin-bottom: 0;
}

.index-about-tit p span {
  display: none;
}

@media (min-width: 576px) {
  .index-about-tit h2 span {
    display: inline-block;
  }
  .index-about-tit p span {
    display: inline-block;
  }
}

.index-about-counter {
  margin-bottom: 1.75rem;
}

.index-about-counter p {
  color: #3a3a3a;
  font-size: 1.375rem;
  display: inline-block;
  margin: 0 0.5rem;
  position: relative;
}

.index-about-counter p + p::before {
  content: '';
  width: 25px;
  height: 1px;
  background-color: #3a3a3a;
  position: absolute;
  bottom: 15px;
  left: -22px;
  -webkit-transform: rotate(-60deg);
      -ms-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.index-about-counter span {
  color: #a72126;
  font-size: 1.25rem;
  margin-right: 0;
}

@media (min-width: 576px) {
  .index-about-counter p {
    margin: 0 1rem;
  }
  .index-about-counter p + p::before {
    width: 30px;
    bottom: 20px;
    left: -30px;
  }
  .index-about-counter span {
    font-size: 2rem;
    margin-right: 1rem;
  }
}

@media (min-width: 768px) {
  .index-about-counter p {
    margin: 0 1.5rem;
  }
  .index-about-counter p + p::before {
    bottom: 30px;
    left: -40px;
  }
  .index-about-counter span {
    font-size: 3.4375rem;
  }
}

.index-about-txt p {
  color: #3a3a3a;
  font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
  line-height: 1.8rem;
  letter-spacing: 0.05rem;
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
.index-news {
  background-color: #a72126;
  padding: 15px;
  position: relative;
}

.index-news::before {
  content: '';
  width: 25px;
  height: 25px;
  background: url(../images/index-news-top-left.jpg);
  position: absolute;
  top: 0;
  left: 0;
}

.index-news::after {
  content: '';
  width: 25px;
  height: 25px;
  background: url(../images/index-news-top-right.jpg);
  position: absolute;
  top: 0;
  right: 0;
}

.index-news-content {
  position: relative;
}

.index-news-content::before {
  content: '';
  width: 25px;
  height: 25px;
  background: url(../images/index-news-bottom-left.jpg);
  position: absolute;
  bottom: -15px;
  left: -15px;
  z-index: 1;
}

.index-news-content::after {
  content: '';
  width: 25px;
  height: 25px;
  background: url(../images/index-news-bottom-right.jpg);
  position: absolute;
  bottom: -15px;
  right: -15px;
  z-index: 1;
}

.index-news-content > .row {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  min-height: 410px;
  margin: 0;
  padding: 2rem 1rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .index-news-content > .row {
    padding: 4.125rem 5rem;
  }
}

.index-news-tit {
  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;
  padding-left: 0;
  margin-bottom: 3rem;
}

.index-news-tit .page-title {
  margin-bottom: 1rem;
}

.index-news-tit .page-title h2 {
  color: #ffffff;
  text-align: left;
}

.index-news-tit .page-title h2 span {
  color: #ffffff;
}

@media (min-width: 992px) {
  .index-news-tit {
    padding-left: 15px;
    margin-bottom: 0;
  }
  .index-news-tit .page-title {
    margin-bottom: 0;
  }
}

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

.index-news-item {
  margin-bottom: 2.5rem;
}

.index-news-date {
  color: #f2efc7;
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
  position: relative;
  padding-left: 0;
  padding-bottom: 1rem;
}

@media (min-width: 1200px) {
  .index-news-date {
    padding-left: 15px;
    padding-bottom: 0;
  }
  .index-news-date::after {
    content: '';
    width: 1px;
    height: 30px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    right: 1rem;
  }
}

@media (min-width: 1440px) {
  .index-news-date::after {
    right: 3rem;
  }
}

.index-news-txt {
  border-bottom: 1px dashed #ffffff;
  padding-left: 0;
  padding-bottom: 2rem;
}

.index-news-txt h3 a {
  color: #ffffff;
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
  height: 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.index-news-txt h3 a:hover, .index-news-txt h3 a:focus {
  text-decoration: underline;
}

.index-news-txt p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.1rem;
  padding-bottom: 0;
  margin-bottom: 0;
  height: 50px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.index-news-item:last-child {
  margin-bottom: 0;
}

.index-news-item:last-child .index-news-txt {
  border-bottom: none;
  padding-bottom: 0;
}

/*------------------------------------*\
    ACTIVITY
\*------------------------------------*/
.index-activity {
  padding: 4.5rem 0;
}

.index-activity .page-title {
  margin-bottom: 2.5rem;
}

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

.index-activity .btn-more::before, .index-activity .btn-more::after {
  background-color: #a72126;
}

.index-activity .btn-more:hover, .index-activity .btn-more:focus {
  border: 1px solid #f2efc7;
  background-color: #a72126;
  color: #ffffff;
}

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

/*------------------------------------*\
    DONATE
\*------------------------------------*/
.index-donate {
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  padding: 3rem 0;
  position: relative;
}

.index-donate::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;
}

.index-donate .page-title {
  position: relative;
  z-index: 1000;
}

.index-donate .page-title h2 span {
  color: #ffffff;
}

.index-donate .page-title p {
  color: #ffffff;
}

.index-donate .page-title a {
  border: 1px solid #a72126;
  background-color: rgba(255, 255, 255, 0.8);
  color: #a72126;
  font-size: 1.125rem;
  letter-spacing: 0.25rem;
  line-height: 50px;
  width: 200px;
  height: 50px;
}

.index-donate .page-title a span {
  background: url(../images/index-donate-arrow-red.svg);
  width: 10px;
  height: 10px;
}

.index-donate .page-title a:hover, .index-donate .page-title a:focus {
  background-color: #a72126;
  color: #ffffff;
}

.index-donate .page-title a:hover span, .index-donate .page-title a:focus span {
  background: url(../images/index-donate-arrow-white.svg);
}

@media (min-width: 992px) {
  .index-donate {
    padding: 6rem 0;
  }
}
