/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * ANIMATION
 * BANNER
 * MAIN
 * ABOUT
 * NEWS
 * PILGRIMAGE
 **/
/*------------------------------------*\
    ANIMATION
\*------------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
            transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
            transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1.25) translateY(0);
            transform: scale(1.25) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1) translateY(-15px);
            transform: scale(1) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
@keyframes zoom-out {
  0% {
    -webkit-transform: scale(1.25) translateY(0);
            transform: scale(1.25) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1) translateY(-15px);
            transform: scale(1) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
@-webkit-keyframes cloud-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes cloud-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes cloud-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes cloud-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner .swiper-banner .swiper-slide:nth-child(odd).swiper-slide-active .banner-pic {
  -webkit-animation: zoom-in 5s ease-out both;
          animation: zoom-in 5s ease-out both;
}
.banner .swiper-banner .swiper-slide:nth-child(even).swiper-slide-active .banner-pic {
  -webkit-animation: zoom-out 5s ease-out both;
          animation: zoom-out 5s ease-out both;
}
.banner .swiper-banner .swiper-pagination-bullet {
  border-radius: 0;
  background-color: #ffffff;
  width: 25px;
  height: 3px;
  opacity: 1;
}
.banner .swiper-banner .swiper-pagination-bullet-active {
  background-color: #d8b475;
}
@media (min-width: 992px) {
  .banner .swiper-banner .swiper-pagination {
    bottom: 30px;
  }
}
.banner-pic {
  background-position: center bottom;
  height: 400px;
}
@media (min-width: 576px) {
  .banner-pic {
    height: 830px;
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main {
  padding: 0;
}
main > section {
  padding: 3rem 0;
}
@media (min-width: 992px) {
  main > section {
    padding: 6.5rem 0;
  }
}

/* CONTENT */
.index-content-pic {
  text-align: center;
}
@media (min-width: 992px) {
  .index-content-pic {
    text-align: left;
  }
}
.index-content-txt {
  position: relative;
  padding: 2rem 0;
}
@media (min-width: 576px) {
  .index-content-txt {
    padding: 3rem;
  }
}
@media (min-width: 992px) {
  .index-content-txt {
    padding: 2.75rem 6rem 0 4.5rem;
  }
}
.index-content-txt .title {
  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: 1rem;
}
.index-content-txt .title span {
  display: block;
}
.index-content-txt .title .ch {
  color: #1a1a1a;
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
}
.index-content-txt .title .en {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-top: 0.25rem;
}
@media (min-width: 576px) {
  .index-content-txt .title .ch {
    font-size: 2.5rem;
    letter-spacing: 0.75rem;
  }
}
@media (min-width: 992px) {
  .index-content-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;
    position: absolute;
    top: 0;
    right: -25px;
  }
}
.index-content-txt .text {
  letter-spacing: 0.1rem;
  line-height: 2;
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .index-content-txt .text {
    margin-bottom: 4rem;
  }
}
.index-content-txt .more {
  border-radius: 1.5625rem;
  border: 1px solid #666666;
  font-family: "Shippori Mincho", serif;
  font-size: 0.8125rem;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 45px;
  width: 245px;
  height: 45px;
}
.index-content-txt .more i {
  margin-left: 1rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.index-content-txt .more:hover {
  border-color: #d8b475;
  background-color: #d8b475;
  color: #ffffff;
}
.index-content-txt .more:hover i {
  margin-left: 2rem;
}
.index-content-txt .more.red {
  border-color: #d52b1a;
  background-color: #d52b1a;
  color: #ffffff;
}
.index-content-txt .more.red:hover {
  background-color: #ffffff;
  color: #d52b1a;
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.index-about > .container {
  position: relative;
}
@media (min-width: 1200px) {
  .index-about > .container {
    max-width: 1200px;
  }
}
.index-about > .container > .row {
  max-width: 1080px;
  margin-left: 0;
  margin-right: auto;
}
.index-about-object img {
  position: absolute;
  opacity: 0;
}
.index-about-object img.is-visible {
  opacity: 1;
}
.index-about-object .cloud-left {
  top: 75px;
  left: 0;
}
.index-about-object .cloud-left.is-visible {
  -webkit-animation: cloud-left 8s infinite linear both;
          animation: cloud-left 8s infinite linear both;
}
.index-about-object .cloud-right {
  bottom: 0;
  right: 0;
}
.index-about-object .cloud-right.is-visible {
  -webkit-animation: cloud-right 8s infinite linear both;
          animation: cloud-right 8s infinite linear both;
}
.index-about-slogan {
  max-width: 300px;
  margin: 0 auto 8rem;
  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;
  position: relative;
}
.index-about-slogan::before, .index-about-slogan::after {
  content: "";
  background-color: #d8b475;
  width: 310px;
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.index-about-slogan::before {
  left: -350px;
}
.index-about-slogan::after {
  right: -350px;
}
.index-about-slogan span {
  font-family: "Shippori Mincho", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin: 0 1.25rem;
  position: relative;
}
.index-about-slogan span::before {
  content: "";
  border-radius: 0.25rem;
  border: 1px solid #d8b475;
  width: 60px;
  height: 60px;
  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);
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
.index-news {
  position: relative;
  overflow: hidden;
}
.index-news::before {
  content: "";
  background-color: #ffffff;
  opacity: 0.4;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.index-news::after {
  content: "";
  background-image: url(../images/index-news.jpg);
  width: 700px;
  height: 600px;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-duration: 1s;
       -o-transition-duration: 1s;
          transition-duration: 1s;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}
.index-news.is-visible::after {
  opacity: 1;
}
.index-news > .container-fluid {
  position: relative;
  z-index: 4;
}
.index-news > .container-fluid > .row {
  max-width: 1560px;
  margin-left: auto;
  margin-right: 0;
}
.index-news .index-content-txt {
  padding: 0;
}
.index-news .index-content-txt .title {
  position: relative;
  right: auto;
}

/*------------------------------------*\
    PILGRIMAGE
\*------------------------------------*/
.index-pilgrimage {
  padding: 3rem 0;
  position: relative;
}
@media (min-width: 992px) {
  .index-pilgrimage {
    padding: 6.5rem 0 3.5rem;
  }
}
.index-pilgrimage::before {
  content: "";
  background-color: #efe8d8;
  opacity: 0.7;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.index-pilgrimage > .container {
  max-width: 100%;
  position: relative;
  z-index: 2;
}
@media (min-width: 1400px) {
  .index-pilgrimage > .container {
    max-width: 1330px;
  }
}
.index-pilgrimage .index-content {
  margin-bottom: 2.5rem;
}