img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

section {
  margin: 100px auto;
}
@media screen and (min-width: 600px) {
  section {
    margin: 150px auto;
  }
}

.global-container {
  transform: translateY(0);
  transition: all 1s ease;
  transition-delay: 3s;
}
.global-container.passive {
  display: none;
  transform: translateY(-100px);
}

.text {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 200%;
  color: #333;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 600px) {
  .text {
    font-size: 1rem;
  }
}

.section-title {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #333;
  text-transform: uppercase;
  font-family: "Roboto Serif", serif;
}
@media screen and (min-width: 600px) {
  .section-title {
    font-size: 2rem;
  }
}

.js-title {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
  transition-delay: 0.1s;
}

.section {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
  transform: translateY(100px);
}
.section.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.section.show > .section__container > .js-title {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.works-top {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 0;
  background: #f5f5f5;
  overflow: hidden;
  text-align: center;
}
.works-top__container {
  position: relative;
  text-align: center;
  margin-top: 30px;
}
.works-top__title {
  font-weight: 400;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
}
.swiper-slide > img {
  width: 70%;
  height: auto;
}
.swiper-thumb {
  width: 70%;
  margin-top: 30px;
}
.swiper-thumb .swiper-wrapper {
  justify-content: center;
}

.swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 20%;
}

.swiper-button {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
}
.swiper-button::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid 1px black;
  border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
  transform: translateX(-100%) rotate(-135deg);
}
.swiper-button-next::after {
  transform: translateX(150%) rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}/*# sourceMappingURL=swiper.css.map */