@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
/* Works */
.works {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .works {
    width: 110rem;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .works {
    width: 65rem;
    margin-bottom: 15rem;
  }
}

.lead {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 769px) {
  .lead {
    font-size: 1.5rem;
    line-height: 2.6rem;
    padding: 0 0 7rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .lead {
    font-size: 2.6rem;
    line-height: 4.4rem;
    padding: 0 0 7rem;
  }
}

.worksarea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .worksarea {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .worksarea {
    gap: 3rem;
  }
}

@media screen and (min-width: 769px) {
  .worksarea::after {
    display: block;
    content: "";
    width: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .worksarea::after {
    display: none;
  }
}

.thumb {
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #ebeeee;
}
@media screen and (min-width: 769px) {
  .thumb {
    width: 34.6rem;
  }
}
@media screen and (max-width: 768px) {
  .thumb {
    width: 31rem;
  }
}

.thumb img {
  width: 100%;
  transition-duration: 0.5s;
}

.thumb:hover img {
  transform: scale(1.2);
  transition-duration: 0.5s;
}/*# sourceMappingURL=works.css.map */