/*------------------------------------*\
    HEADER
\*------------------------------------*/
.header-hide {
  display: none;
  background-color: #fff4eb;
  height: 116px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media (min-width: 768px) {
  header {
    opacity: 0;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease;
  }
  header.header--active {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}

/*------------------------------------*\
    FOLLOW
\*------------------------------------*/
.follow {
  opacity: 0;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.follow--active {
  opacity: 1;
}

/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner {
  cursor: pointer;
  position: relative;
}

.banner .swiper-hide {
  background-color: #fff4eb;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 999;
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.banner__scrollBtn {
  cursor: pointer;
  border: 2px solid #ffffff;
  border-radius: 20px;
  width: 20px;
  height: 35px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 15%;
  z-index: 9999;
}

.banner__scrollBtn::before {
  content: '';
  width: 2px;
  height: 5px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 30%;
  -webkit-animation: moveDown 1s ease-out infinite both;
          animation: moveDown 1s ease-out infinite both;
}

@-webkit-keyframes moveDown {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, 10px);
            transform: translate(-50%, 10px);
    opacity: 0;
  }
}

@keyframes moveDown {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, 10px);
            transform: translate(-50%, 10px);
    opacity: 0;
  }
}

.banner__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
}

.banner__logo > img {
  width: 150px;
  height: 91px;
}

.banner__group {
  display: none;
}

.banner__group ul + ul {
  padding-left: 1rem;
}

@media (min-width: 576px) {
  .banner__logo > img {
    width: auto;
    height: auto;
  }
  .banner__group {
    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-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .banner__group ul li {
    display: inline-block;
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main {
  background-color: transparent;
  padding-top: 4rem;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  main {
    padding-top: 6rem;
  }
}

main::before {
  display: none;
}

main .container {
  width: 100%;
}

main h2 {
  border-bottom: none;
  color: #141f3f;
  font-size: 2.375rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
}

main h2 span {
  color: #af8a68;
  font-size: 0.8125rem;
  letter-spacing: 0.2rem;
  display: block;
}

main p {
  letter-spacing: 0.08rem;
}

main a {
  text-align: right;
  color: #af8a68;
}

.index__about {
  width: 100%;
  margin: auto;
  padding-top: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 5rem;
  position: relative;
}

.index__about h1 {
  color: #af8a68;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.index__about h1 span {
  display: block;
  letter-spacing: 0.2rem;
}

.index__about h1 span.subtitle {
  color: #141f3f;
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.5rem;
  padding-top: 1.2rem;
}

.index__about__item {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 30px rgba(175, 138, 104, 0.5);
          box-shadow: 0 0 30px rgba(175, 138, 104, 0.5);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  z-index: 2;
}

.index__about__txt {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 3rem;
}

.index__about__txt p span {
  color: #af8a68;
}

.index__about__pic {
  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;
}

.index__about__pic img {
  width: 50%;
  height: 400px;
}

@media (min-width: 576px) {
  .index__about h1 span {
    display: inline-block;
  }
  .index__about h1 span.subtitle {
    display: block;
  }
  .index__about__pic img {
    height: auto;
  }
}

@media (min-width: 768px) {
  .index__about {
    padding-bottom: 11rem;
  }
  .index__about::after {
    content: '';
    width: 900px;
    height: 15px;
    background-image: url(../images/index_about_bg.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 110px;
  }
  .index__about h1 {
    font-size: 2.9375rem;
    margin-bottom: 4.5rem;
  }
}

@media (min-width: 992px) {
  .index__about__txt {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
  .index__about__pic {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .index__about__pic img {
    width: 50%;
  }
  .index__about__pic img:first-child {
    position: relative;
    bottom: -105px;
  }
}

@media (min-width: 1200px) {
  .index__about {
    width: 1200px;
  }
  .index__about__txt {
    padding-left: 5rem;
  }
  .index__about__pic {
    padding-left: 3rem;
  }
  .index__about__pic img {
    width: 100%;
  }
}

@media (min-width: 1700px) {
  .index__about {
    padding-left: 0;
    padding-right: 0;
  }
}

.index__news {
  background-color: #fff;
  padding-bottom: 0;
}

.index__news__tit {
  width: 100%;
  margin: 0 auto 3rem;
  padding-top: 4rem;
  padding-right: 2rem;
  padding-left: 2rem;
  position: relative;
}

.index__news__tit h2 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.index__news__tit a {
  display: block;
  padding-top: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #af8a68;
}

.index__news__tit a:hover {
  color: #141f3f;
  border-bottom: 1px solid #141f3f;
}

@media (min-width: 576px) {
  .index__news__tit a {
    position: absolute;
    bottom: 0;
    right: 3rem;
  }
}

@media (min-width: 1200px) {
  .index__news__tit {
    width: 1200px;
    padding-top: 7rem;
  }
  .index__news__tit::before {
    content: '';
    width: 1px;
    height: auto;
    background-color: #af8a68;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 1700px) {
  .index__news__tit {
    padding-left: 5rem;
    padding-right: 0;
  }
  .index__news__tit a {
    right: 0;
  }
}

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

.index__block * {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.index__block::after {
  content: '';
  width: auto;
  height: 100px;
  background-color: #141f3f;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.index__block .row {
  width: 100%;
  padding: 0 1rem;
}

.index__block__item {
  border: 1px solid #af8a68;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.index__block__item img {
  width: 100%;
  background-color: #af8a68;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.index__block__item:hover img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.index__block h2 {
  font-size: 1rem;
  position: absolute;
  top: 15%;
  left: 8%;
  z-index: 3;
}

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

@media (min-width: 576px) {
  .index__block h2 {
    top: 40%;
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .index__block__item + .index__block__item {
    border-left: none;
  }
}

@media (min-width: 1200px) {
  .index__block .row {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
}

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

.swiper-news .swiper-slide a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 99;
}

.swiper-news .swiper-pagination-bullet-active {
  background-color: #141f3f;
}
