@charset "UTF-8";

/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * ALL
 * BANNER
 * MAIN
 * ABOUT
 * NEWS
 * DONATE
 * LINK
 **/
/*------------------------------------*\
    ALL
\*------------------------------------*/
.loading {
  background: url(../images/loading-bg.jpg) center center repeat;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
}

.loading .load {
  background-image: url(../images/load.png);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 215px;
  height: 250px;
  -webkit-animation: transformScale 1s ease-out forwards;
  animation: transformScale 1s ease-out forwards;
}

@-webkit-keyframes transformScale {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

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

@keyframes transformScale {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

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

/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner .container::before {
  display: none;
}

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

.banner .swiper-slide::before {
  content: '';
  background: rgba(35, 24, 21, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: none;
}

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

.banner-pic {
  height: 400px;
}

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

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

.banner-txt {
  margin-top: 0;
}

@media (min-width: 992px) {
  .banner-txt {
    margin-top: -4.5rem;
  }
}

.banner-txt h2 {
  color: #ffffff;
  font-family: "Noto Serif TC", serif;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 576px) {
  .banner-txt h2 {
    font-size: 2.8125rem;
  }
}

.banner-txt p {
  color: #ffffff;
  font-family: "Noto Serif TC", serif;
  font-size: 1rem;
  letter-spacing: 0.125rem;
}

@media (min-width: 576px) {
  .banner-txt p {
    font-size: 1.375rem;
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main {
  background-image: url(../images/index-bg.jpg);
  padding: 0;
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.index-about {
  padding: 3rem 0 0;
  position: relative;
  z-index: 1000;
}

@media (min-width: 992px) {
  .index-about {
    padding-top: 0;
    top: -160px;
    margin-bottom: -160px;
  }
}

.index-about .scroll {
  text-align: center;
  display: none;
}

.index-about .scroll a {
  color: #ffffff;
  font-family: "Noto Serif TC", serif;
  font-size: 1.125rem;
  letter-spacing: 0.25rem;
  padding-bottom: 4rem;
  position: relative;
}

.index-about .scroll a::after {
  content: '';
  background-color: #ffffff;
  width: 1px;
  height: 40px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}

/* @media (min-width: 992px) {
  .index-about .scroll {
    display: block;
  }
} */

.index-about-item {
  background-position: left center;
  background-size: cover;
  min-height: 340px;
  padding: 2rem 1.5rem;
  position: relative;
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .index-about-item {
    padding: 2rem;
  }
}

@media (min-width: 1366px) {
  .index-about-item {
    padding: 3rem 7rem;
  }
}

.index-about-item::before {
  content: '';
  border: 1px solid #ffffff;
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  bottom: 10px;
}

@media (min-width: 576px) {
  .index-about-item::before {
    top: 20px;
    right: 20px;
    left: 20px;
    bottom: 20px;
  }
}

.index-about-txt {
  color: #000000;
  font-family: "Noto Serif TC", serif;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .index-about-txt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.index-about-txt .title {
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  padding: 1rem 0;
  margin-bottom: 1rem;
  text-align: center;
  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;
}

.index-about-txt .title h2 {
  font-size: 1.75rem;
  letter-spacing: 0.25rem;
  margin: 0;
}

.index-about-txt .title span {
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin-top: 0.5rem;
}

@media (min-width: 576px) {
  .index-about-txt .title {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 1rem 0 0;
    margin-bottom: 0;
  }

  .index-about-txt .title h2 {
    letter-spacing: 0.75rem;
  }

  .index-about-txt .title span {
    letter-spacing: 0.25rem;
    margin-top: -0.5rem;
  }
}

.index-about-txt .text {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.15rem;
}

.index-about-txt .text img {
  margin-top: 1rem;
}

@media (min-width: 576px) {
  .index-about-txt .text {
    font-size: 1.125rem;
    line-height: 2;
    margin-left: 2.75rem;
  }
}

.index-about-item.primary::before {
  border-left: none;
  border-right: none;
  left: 0;
  right: 0;
}

.index-about-item.secondary {
  background-position: right center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.index-about-item.secondary .index-about-txt {
  color: #ffffff;
}

.index-about-item.secondary .index-about-txt .title {
  border-color: #efc165;
}

.index-about-item.secondary .index-about-txt .title h2 {
  color: #efc165;
}

@media (min-width: 576px) {
  .index-about-item.secondary {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

/* BUTTON */
.btn-wrap {
  margin-top: 1.25rem;
}

.btn-back {
  font-size: 0.8125rem;
  letter-spacing: 0.125rem;
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
.index-news {
  padding: 3rem 0;
}

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

.index-news .news-list-group {
  padding-top: 2rem;
}

@media (min-width: 576px) {
  .index-news .news-list-group {
    padding-top: 4.5rem;
  }
}

.index-news .news-list-pic {
  position: relative;
}

.index-news .news-list-pic span {
  color: #ffffff;
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 30px;
  width: 85px;
  height: 30px;
  position: absolute;
  left: 20px;
  bottom: -15px;
  z-index: 2;
}

.index-news .news-list-pic span.class-1 {
  background-color: #a72126;
}

.index-news .news-list-pic span.class-2 {
  background-color: #000000;
}

.index-news .news-list-pic span.class-3 {
  background-color: #efc165;
}

.index-news .news-list-pic span.class-4 {
  background-color: #898989;
}

.index-news-title {
  text-align: center;
}

.index-news-title h2 {
  color: #000000;
  font-family: "Noto Serif TC", serif;
  font-size: 2rem;
  letter-spacing: 0.25rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .index-news-title h2 {
    font-size: 2.375rem;
    letter-spacing: 0.45rem;
  }
}

.index-news-title span {
  color: #efc165;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}

/*------------------------------------*\
    DONATE
\*------------------------------------*/
.index-donate {
  min-height: 660px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

.index-donate-tit {
  padding-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .index-donate {
    padding-bottom: 3rem;
  }

  .index-donate-tit {
    margin-bottom: 4.5rem;
  }
}

.index-donate-tit h2 {
  color: #000000;
  font-family: "Noto Serif TC", serif;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.25rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.index-donate-tit h2::after {
  content: '';
  background-color: #000000;
  width: 120px;
  height: 1px;
  position: absolute;
  top: 25px;
  right: -140px;
}

@media (min-width: 576px) {
  .index-donate-tit h2 {
    font-size: 2.1875rem;
    letter-spacing: 0.4rem;
  }
}

.index-donate-tit span {
  display: block;
  color: #efc165;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.index-donate-pic {
  position: static;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .index-donate-pic {
    margin-bottom: 0;
  }
}

@media (min-width: 1366px) {
  .index-donate-pic img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/* DEEDS LIST */
.index-donate-list {
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .index-donate-list {
    top: -150px;
    margin-bottom: -150px;
  }
}

@media (min-width: 992px) {
  .index-donate-list {
    top: 0;
    margin-bottom: 0;
  }
}

.index-donate-list-item {
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
  position: relative;
}

.index-donate-list-item:hover .index-donate-list-pic img,
.index-donate-list-item:focus .index-donate-list-pic img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.index-donate-list-item a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.index-donate-list-pic {
  position: relative;
  overflow: hidden;
}

.index-donate-list-pic::before {
  content: '';
  border: 1px solid #ffffff;
  position: absolute;
  top: 5px;
  right: 5px;
  left: 5px;
  bottom: 5px;
  z-index: 2;
}

@media (min-width: 576px) {
  .index-donate-list-item {
    margin-bottom: 3rem;
  }

  .index-donate-list-pic::before {
    top: 15px;
    right: 15px;
    left: 15px;
    bottom: 15px;
  }
}

.index-donate-list-pic img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index-donate-list-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.index-donate-list-txt h3 {
  background-color: #ffffff;
  color: #000000;
  font-family: "Noto Serif TC", serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.75rem;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  width: 80px;
  height: 200px;
  position: relative;
  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;
}

.index-donate-list-txt h3::before {
  content: '';
  border-left: 1px solid #efc165;
  border-right: 1px solid #efc165;
  position: absolute;
  top: 5px;
  right: 5px;
  left: 5px;
  bottom: 5px;
  z-index: 2;
}

@media (min-width: 576px) {
  .index-donate-list-txt h3 {
    height: 230px;
  }
}

/*------------------------------------*\
    LINK
\*------------------------------------*/
.index-link-list {
  padding-bottom: 2rem;
  margin: 0 -0.5rem;
}

@media (min-width: 992px) {
  .index-link-list {
    padding-top: 4rem;
    padding-bottom: 0;
    margin: 0 -1rem;
  }
}

@media (min-width: 1366px) {
  .index-link-list {
    margin: -1.25rem;
  }
}

.index-link-list>[class*=col-] {
  padding: 0 0.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .index-link-list>[class*=col-] {
    padding: 0 1rem;
    margin-bottom: 4rem;
  }
}

@media (min-width: 1366px) {
  .index-link-list>[class*=col-] {
    padding: 0 1.5rem;
  }
}

.index-link-item {
  position: relative;
}

.index-link-item:hover .index-link-pic img,
.index-link-item:focus .index-link-pic img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.index-link-item a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.index-link-pic {
  position: relative;
  overflow: hidden;
}

.index-link-pic::before {
  content: '';
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  bottom: 10px;
  z-index: 2;
}

@media (min-width: 576px) {
  .index-link-pic::before {
    top: 20px;
    right: 20px;
    left: 20px;
    bottom: 20px;
  }
}

.index-link-pic img {
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index-link-txt {
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.index-link-txt h3 {
  color: #ffffff;
  font-family: "Noto Serif TC", serif;
  font-size: 1.75rem;
  letter-spacing: 0.5rem;
  margin-bottom: 0;
}

.index-link-txt h3::before {
  content: '【';
}

.index-link-txt h3::after {
  content: '】';
}

@media (min-width: 768px) {
  .index-link-txt {
    height: 135px;
  }

  .index-link-txt h3 {
    font-size: 2.25rem;
    letter-spacing: 1rem;
  }
}

.index-link-txt span {
  display: block;
  color: #efc165;
  font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}

@media (min-width: 576px) {
  .index-link-txt span {
    font-size: 1.125rem;
  }
}

.index-link-text {
  color: #000000;
  font-family: "Noto Serif TC", serif;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.2rem;
  padding: 2rem 1rem;
  display: none;
}

@media (min-width: 992px) {
  .index-link-text {
    padding: 2rem;
  }
}