.feed--hero {
  display: flex;
}
.feed--hero .feed__list {
  display: flex;
  flex-shrink: 0;
  animation: feedScroll 60s infinite linear 0.5s both;
}
.feed--hero .feed__item {
  flex-shrink: 0;
  position: relative;
  width: 840px;
  margin: 0 17.5px;
  border-radius: 10px;
  overflow: hidden;
}
.feed--hero .feed__item::before {
  display: block;
  padding-top: 70.8%;
  content: "";
}
.feed--hero .feed__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feed--recruit {
  display: flex;
}
.feed--recruit .feed__list {
  display: flex;
  flex-shrink: 0;
  animation: feedScroll 60s infinite linear 0.5s both;
}
.feed--recruit .feed__item {
  flex-shrink: 0;
  position: relative;
  width: 1705px;
  margin: 0 60px;
}
.feed--recruit .feed__item img {
  width: 100%;
  height: auto;
}
.feed--instagram {
  display: flex;
}
.feed--instagram .feed__list {
  display: flex;
  flex-shrink: 0;
}
.feed--instagram .feed__item {
  flex-shrink: 0;
  position: relative;
  width: 290px;
  margin: 0.5px;
  border-radius: 10px;
  overflow: hidden;
}
.feed--instagram .feed__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feed--instagram .feed__item::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.feed--instagram01 .feed__list {
  animation: feedScroll 60s infinite linear 0.5s both;
}
.feed--instagram02 .feed__list {
  animation: feedScrollReverse 60s infinite linear 0.5s both;
}
@media screen and (max-width: 1200px) {
  .feed--hero .feed__item {
    width: 480px;
  }
  .feed--recruit .feed__item {
    width: 1200px;
  }
  .feed--instagram .feed__item {
    width: 220px;
  }
}
@media screen and (max-width: 576px) {
  .feed--recruit .feed__item {
    width: 520px;
    margin: 0 10px;
  }
  .feed--instagram .feed__item {
    width: 140px;
    border-radius: 6px;
  }
}

@keyframes feedScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes feedScrollReverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.hero {
  position: relative;
  margin-bottom: 85px;
  padding-top: 338px;
}
.hero__inner {
  width: 62.8%;
  margin: auto;
}
.hero__heading {
  margin-bottom: 60px;
}
.hero__list {
  font-size: 0;
}
.hero__item {
  display: inline-block;
  margin-right: 10px;
}
.hero__item a {
  display: inline-block;
  padding: 13px 41px;
  margin-bottom: 15px;
  border-radius: 25px;
  background-color: #FAF5EC;
  transition: 0.3s;
}
.hero__item a:hover {
  background-color: #212121;
  color: #fff;
}
.hero__item span {
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  .hero {
    padding-top: 330px;
  }
  .hero__inner {
    width: 85.7%;
  }
}
@media screen and (max-width: 576px) {
  .hero {
    margin-bottom: 45px;
    padding-top: 200px;
  }
  .hero__heading {
    margin-bottom: 40px;
  }
  .hero__inner {
    width: 100%;
    padding: 0 20px;
  }
  .hero__item a {
    padding: 8px 20px;
  }
  .hero__item span {
    font-size: 14px;
  }
}

.works__inner {
  width: 85.7%;
  margin: 0 auto 100px;
}
.works__heading {
  margin-bottom: 50px;
}
.works__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.works__list::after {
  display: block;
  width: 29.75%;
  content: "";
}
.works__item {
  width: 29.75%;
  margin-bottom: 65px;
}
.works__thumb {
  position: relative;
  margin-bottom: 10px;
  padding-left: 27px;
}
.works__caption {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  letter-spacing: 0.025em;
  writing-mode: vertical-lr;
}
.works__image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.works__image::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.works__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.works__area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 97px;
  height: 24px;
  margin-right: 15px;
  border-radius: 12px;
  background-color: #FAF5EC;
}
.works__area span {
  font-size: 12px;
}
.works__initial {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.works__title {
  width: 100%;
  margin-top: 9px;
  line-height: 1.25;
}
@media screen and (max-width: 1200px) {
  .works__inner {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .works__inner {
    width: 100%;
    padding: 0 20px;
  }
  .works__item {
    width: 48.5%;
    margin-bottom: 40px;
  }
  .works__thumb {
    margin-bottom: 5px;
    padding-left: 20px;
  }
  .works__image {
    border-radius: 6px;
  }
  .works__area {
    width: 80px;
    height: 22px;
    margin-right: 10px;
  }
  .works__title {
    margin-top: 5px;
    font-size: 13px;
  }
  .works__caption {
    font-size: 12px;
  }
}

.instagram {
  padding-bottom: 140px;
}
.instagram__heading {
  width: 812px;
  margin: 0 auto 80px;
}
.instagram__link {
  margin-top: 70px;
}
.instagram__link a {
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .instagram__heading {
    width: 580px;
  }
}
@media screen and (max-width: 576px) {
  .instagram {
    padding-bottom: 70px;
  }
  .instagram__heading {
    width: calc(100% - 40px);
    max-width: 360px;
    margin-bottom: 40px;
  }
  .instagram__link {
    margin-top: 50px;
  }
}/*# sourceMappingURL=works.css.map */