/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * BANNER
 * MAIN
 * NEWS
 * ABOUT
 **/
/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner {
  border-bottom: none;
  position: relative;
}

.banner>.container::before {
  display: none;
}

.banner a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

.banner-pic {
  height: auto;
}

.banner .scroll {
  cursor: pointer;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 30px;
  z-index: 1010;
}

.banner .scroll span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #ffffff transparent transparent transparent;
}

.banner .swiper-pagination-bullets {
  bottom: 5rem;
}

.banner .swiper-pagination-bullet {
  background-color: #a5a5a5;
  border-radius: 0;
  width: 15px;
  height: 5px;
  opacity: 1;
}

.banner .swiper-pagination-bullet-active {
  background-color: #dc5f10;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main {
  padding: 0;
}

main>section {
  padding: 4rem 0;
}

main .page-header {
  text-align: center;
  margin-bottom: 2rem;
}

main .page-header h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

main .page-header h2 span {
  color: #dc5f10;
  padding: 0;
  position: relative;
}

main .page-header h2 span b {
  color: #629043;
}

main .page-header h2 span::before,
main .page-header h2 span::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-60deg);
  -ms-transform: translateY(-50%) rotate(-60deg);
  transform: translateY(-50%) rotate(-60deg);
  display: none;
}

main .page-header h2 span::before {
  left: -40px;
}

main .page-header h2 span::after {
  right: -40px;
}

main .page-header p {
  font-size: 1.3125rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  main .page-header h2 {
    font-size: 2.625rem;
  }

  main .page-header h2 span {
    padding: 0;

  }
}

/* BUTTON */
.btn-more {
  background-color: #dc5f10 !important;
  font-size: 0.875rem !important;
  text-align: center;
  width: 200px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
}

.btn-more span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 1rem;
}

.btn-more:hover span,
.btn-more:focus span {
  border-color: transparent transparent transparent #dc5f10;
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
.index-news {
  background-image: url(../images/index-news-bg-02.jpg);
  background-position: center;
  background-repeat: repeat-x;
  background-size: cover;
  min-height: 700px;
  position: relative;
  top: -3rem;
  margin-bottom: -3rem;
}

.index-news::before {
  content: '';
  background-image: url(../images/index-news-bg-s.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 991px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.index-news::after {
  content: '';
  background-image: url(../images/index-news-bg-02.jpg);
  width: auto;
  height: 440px;
  position: absolute;
  top: 0;
  left: 0;
  right: 58%;
  z-index: 3;
  display: none;
}

.index-news>.container {
  max-width: 100%;
  position: relative;
}

.index-news>.container::before {
  content: '';
  background-image: url(../images/index-news-bg.jpg);
  background-repeat: no-repeat;
  width: 400px;
  height: 700px;
  position: absolute;
  top: -112px;
  left: 0;
  z-index: 4;
  display: none;
}

.index-news>.container::after {
  content: '';
  background-image: url(../images/index-news-bg-02.jpg);
  width: auto;
  height: 60px;
  position: absolute;
  top: -65px;
  right: 0;
  left: 58%;
  z-index: 3;
  display: none;
}

@media (min-width: 992px) {
  .index-news {
    background-size: contain;
    padding: 7rem 0 2rem;
    height: 700px;
  }

  .index-news::before {
    background-image: url(../images/index-news-bg.png);
    width: 200px;
  }

  .index-news::after {
    display: block;
  }

  .index-news>.container::before {
    display: block;
  }

  .index-news>.container::after {
    display: block;
    top: -112px;
  }
}

@media (min-width: 1200px) {
  .index-news::after {
    right: 57%;
  }

  .index-news>.container::before {
    width: 600px;
  }

  .index-news>.container::after {
    left: 57%;
  }
}

@media (min-width: 1410px) {
  .index-news::after {
    right: 55%;
  }

  .index-news>.container::after {
    left: 55%;
  }
}

.index-news .page-header {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .index-news .page-header {
    text-align: left;
  }

  .index-news .page-header h2 span {
    padding: 0;
  }

  .index-news .page-header h2 span::before,
  .index-news .page-header h2 span::after {
    display: none;
  }
}

.index-news .menu {
  margin-top: 2rem;
  margin-bottom: 0;
}

.index-news .menu .nav {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .index-news .menu {
    margin-top: 0;
  }
}

.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;
  margin-bottom: 3rem;
  position: relative;
  z-index: 5;
}

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

@media (min-width: 992px) {
  .index-news-tit {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    -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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .index-news-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1810px) {
  .index-news-content {
    max-width: 100%;
    margin-right: 0;
  }
}

.index-news-more {
  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-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.index-news-more>a {
  color: #7a7a7a;
  font-size: 0.9375rem;
  padding: 0 0.25rem;
  display: inline-block;
  position: relative;
}

.index-news-more>a b {
  border-bottom: 1px solid #dc5f10;
  padding: 0 0.25rem 0.5rem;
}

.index-news-more>a span {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #7a7a7a;
}

.index-news-more>a:hover,
.index-news-more>a:focus {
  color: #629043;
}

.index-news-more>a:hover b,
.index-news-more>a:focus b {
  border-bottom: 1px solid #629043;
}

.index-news-more>a:hover span,
.index-news-more>a:focus span {
  border-color: transparent transparent transparent #629043;
}

@media (min-width: 992px) {
  .index-news-more {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    -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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.index-news .swiper-control {
  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: 2rem;
}

@media (min-width: 992px) {
  .index-news .swiper-control {
    margin-bottom: 0;
  }
}

.index-news .swiper-button-next,
.index-news .swiper-button-prev {
  background: url(../images/index-arrow.svg);
  position: relative;
  top: auto;
  width: 130px;
  height: 60px;
  margin: 0 1rem;
}

.index-news .swiper-button-prev {
  left: auto;
}

.index-news .swiper-button-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  right: auto;
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.index-about {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

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

@media (min-width: 992px) {
  .index-about>.container {
    max-width: 900px;
    margin: 0 auto;
  }
}

.index-about .page-header h2 span {
  color: #ffffff;
}

.index-about .page-header h2 span::before,
.index-about .page-header h2 span::after {
  background-color: #ffffff;
}

.index-about .page-header p {
  color: #201815;
}

.index-about .btn-more {
  border: 1px solid #629043 !important;
  background-color: #629043 !important;
}

.index-about .btn-more:hover,
.index-about .btn-more:focus {
  background-color: #ffffff !important;
  color: #629043 !important;
}

.index-about .btn-more:hover span,
.index-about .btn-more:focus span {
  border-color: transparent transparent transparent #629043;
}

.index-about-content {
  position: relative;
  z-index: 4;
}

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

.index-about-txt h3 {
  border-top: 1px solid #629043;
  border-bottom: 1px solid #629043;
  color: #629043;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 0.75rem 0;
  margin-bottom: 1.5rem;
}

.index-about-txt p {
  color: #201815;
  line-height: 1.8rem;
  margin-bottom: 1.5rem;
}