/*==================================================
section top_about
===================================*/
.top_about {
  position: relative;
  padding: 3rem 0 6rem;
  background: url(../img/about_bg.jpg) no-repeat;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
}

@media screen and (max-width: 767px) {
  .top_about {
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 98%);
  }
}

.top_about::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #383838 0%, #000000 100%);
  opacity: 0.83;
  position: absolute;
  top: 0;
  left: 0;
}

.top_about__slide {
  padding: 2rem 0;
}

#thumbnail-carousel {
  margin-top: 2rem;
}

.top_about__slide .splide__slide:nth-of-type(2n + 1) {
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  .top_about__slide .splide__slide:nth-of-type(2n + 1) {
    margin-top: 1.5rem;
  }
}

.top_about__wrapper {
  max-width: 1130px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.top_about__content {
  max-width: 1000px;
  margin: 5rem auto 0;
  display: flex;
  justify-content: center;
  gap: 5rem;
}

@media screen and (max-width: 767px) {
  .top_about__content {
    flex-direction: column-reverse;
    padding: 0;
    gap: 4rem;
    margin: 3rem auto 0;
  }
}

.top_about__content--left {
  width: 37.5rem;
}

.top_about__content--left .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_about__content--right {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .top_about__content--left,
  .top_about__content--right {
    width: 100%;
    padding: 0 5%;
  }

  .top_about__content--right {
    max-width: unset;
    padding-top: 0;
  }
}

.top_about__title {
  margin-bottom: 2rem;
}

.top_about__title_jp {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.14rem;
  padding-left: 0;
}

.top_about__title_en {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 0.4rem;
  line-height: 7rem;
}

@media screen and (max-width: 767px) {
  .top_about__title_en {
    font-size: 4rem;
    letter-spacing: 0.2rem;
    line-height: 4rem;
  }
}

.top_about__lead {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

@media screen and (max-width: 767px) {
  .top_about__lead {
    margin-bottom: 2rem;
  }
}

.top_about__lead span {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  display: block;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  background-color: #a28c69;
  width: fit-content;
  line-height: 3.2rem;
  padding: 0.5rem 1.5rem;
  padding-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .top_about__lead span {
    font-size: 2rem;
    padding: 0.5rem 1rem;
    padding-bottom: 1rem;
  }
}

.top_about__text_ja {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  line-height: 3rem;
  margin-bottom: 6rem;
  letter-spacing: 0.08rem;
}

@media screen and (max-width: 767px) {
  .top_about__text_ja {
    line-height: 2.8rem;
    margin-bottom: 3rem;
  }
}

.top_about__text_en {
  color: rgba(255, 255, 255, 0.3);
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.15rem;
  line-height: 2.2rem;
}

@media screen and (max-width: 767px) {
  .top_about__text_en {
    font-size: 1.2rem;
  }
}

.about_name__sideScroll {
  display: flex;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  overflow: hidden;
  margin-top: -4rem;
}

@media screen and (min-width: 768px) {
  .about_name__sideScroll {
    -webkit-column-gap: min(2.36vw, 3.4rem);
    -moz-column-gap: min(2.36vw, 3.4rem);
    column-gap: min(2.36vw, 3.4rem);
    margin-top: -7rem;
  }
}

.about_name__sideScrollImg {
  z-index: 1;
  position: relative;
  flex-shrink: 0;
  width: 150rem;
  animation: loopSlide 80s infinite linear;
}

@media screen and (min-width: 768px) {
  .about_name__sideScrollImg {
    width: 280rem;
  }
}

.about_name__sideScrollImg::before {
  padding-top: 5.2933392148%;
}

@keyframes loopSlide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/*==================================================
section top_about END
===================================*/
