.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);
  }
}
.header__logo {
  display: none;
}

.hero {
  padding-top: 60px;
}
.hero__heading {
  width: 181px;
  margin: 0 auto 65px;
}
.hero__catch {
  position: absolute;
  top: 62px;
  right: 62px;
  font-size: 23px;
  writing-mode: vertical-rl;
  line-height: 1.8;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 576px) {
  .hero {
    padding-top: 80px;
  }
  .hero__heading {
    width: 120px;
    margin-bottom: 80px;
  }
  .hero__catch {
    top: 90px;
    right: 25px;
    z-index: 20;
    font-size: 20px;
    line-height: 1.65;
  }
}

.concept {
  position: relative;
  padding-top: 380px;
  padding-bottom: 265px;
}
.concept__image {
  position: absolute;
}
.concept__image--01 {
  top: 77px;
  left: 50%;
  transform: translateX(-800px);
  width: 646px;
}
.concept__image--02 {
  top: 224px;
  left: 50%;
  transform: translateX(350px);
  width: 284px;
}
.concept__image--03 {
  top: 878px;
  left: 50%;
  transform: translateX(-540px);
  width: 322px;
}
.concept__heading {
  margin-bottom: 85px;
  margin-left: 42.4%;
  font-size: 35px;
  line-height: 1.8;
  letter-spacing: 0.25em;
}
.concept__contents {
  margin-left: 50.42%;
}
.concept__sentence {
  margin-bottom: 65px;
}
.concept__sentence p {
  font-weight: 600;
  font-size: 16px;
  line-height: 2.0625;
}
.concept__sentence p:not(:last-of-type) {
  margin-bottom: 1.75em;
}
@media screen and (max-width: 1200px) {
  .concept {
    padding-top: 200px;
  }
  .concept__image--01 {
    transform: translateX(-437px);
    width: 310px;
  }
  .concept__image--02 {
    top: 100px;
    transform: translateX(240px);
    width: 180px;
  }
  .concept__image--03 {
    top: 530px;
    transform: translateX(-330px);
    width: 200px;
  }
  .concept__heading {
    margin-bottom: 55px;
    margin-left: 38%;
    font-size: 28px;
  }
  .concept__contents {
    margin-right: 7.5%;
    margin-left: 43%;
  }
}
@media screen and (max-width: 576px) {
  .concept {
    padding-top: 140px;
    padding-bottom: 110px;
  }
  .concept__image--01 {
    transform: translateX(-220px);
    width: 150px;
  }
  .concept__image--02 {
    display: none;
  }
  .concept__image--03 {
    top: auto;
    right: 0;
    bottom: 260px;
    transform: translateX(20px);
    left: auto;
    z-index: -1;
    width: 130px;
  }
  .concept__heading {
    margin-bottom: 55px;
    margin-left: 40%;
    font-size: 20px;
  }
  .concept__contents {
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
  .concept__sentence {
    margin-bottom: 45px;
  }
  .concept__sentence p {
    font-size: 14px;
  }
}

.works {
  position: relative;
  margin-bottom: 190px;
}
.works__fence {
  top: 0;
  right: 0;
  transform: translateY(-30%);
}
.works__inner {
  width: 85.7%;
  margin: auto;
}
.works__heading {
  margin-bottom: 50px;
}
.works__list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
.works__item {
  width: 29.75%;
}
.works__item:first-of-type {
  margin-top: 120px;
}
.works__item:nth-of-type(2) {
  margin-top: 60px;
}
.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;
}
.works__link a {
  margin: auto;
}
@media screen and (max-width: 576px) {
  .works {
    margin-bottom: 120px;
  }
  .works__inner {
    width: 100%;
    padding-left: 20px;
  }
  .works__list {
    margin-bottom: 45px;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .works__list::-webkit-scrollbar {
    display: none;
  }
  .works__item {
    flex-shrink: 0;
    width: 240px;
    margin-right: 25px;
  }
  .works__item:first-of-type, .works__item:nth-of-type(2) {
    margin-top: 0;
  }
  .works__item.fade-up {
    transform: none;
  }
  .works__thumb {
    margin-bottom: 5px;
  }
  .works__link {
    margin-left: -20px;
  }
}

.owakon {
  margin-bottom: 150px;
}
.owakon__inner {
  display: flex;
  position: relative;
  width: 85.7%;
  max-width: 1400px;
  margin: auto;
  padding: 100px 60px 60px;
  border-radius: 10px;
  background-color: #c9c9c9;
  background-image: url(../images/index_owakon_background.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.owakon__balloon {
  position: absolute;
  top: 0;
  left: 15px;
  transform: translateY(-50%);
  width: 245px;
}
.owakon__contents {
  flex: 1;
  padding-right: 60px;
}
.owakon__heading {
  position: relative;
  margin-bottom: 30px;
}
.owakon__heading span {
  display: inline-block;
  padding: 7px 8px 8px;
  background-color: #212121;
  color: #fff;
  font-weight: bold;
  font-size: 35px;
  letter-spacing: 0.24em;
}
.owakon__heading span:first-of-type {
  margin-bottom: 9px;
}
.owakon__heading img {
  position: absolute;
  bottom: 0;
  left: 366px;
  width: 186px;
}
.owakon__sentence {
  margin-bottom: 40px;
  color: #fff;
  line-height: 1.8125;
  letter-spacing: 0.025em;
}
.owakon__image {
  width: 28.4%;
}
.owakon__image img {
  border-radius: 10px;
}
.owakon__image img:last-of-type {
  display: none;
}
.owakon__link a {
  width: 376px;
}
.owakon__link a br {
  display: none;
}
@media screen and (max-width: 1200px) {
  .owakon__inner {
    flex-direction: column-reverse;
  }
  .owakon__image {
    width: 65%;
    margin-bottom: 60px;
  }
  .owakon__contents {
    padding: 0;
  }
}
@media screen and (max-width: 576px) {
  .owakon {
    margin-bottom: 100px;
    padding: 0 20px;
  }
  .owakon__inner {
    width: 100%;
    padding: 70px 20px 20px;
  }
  .owakon__balloon {
    width: 160px;
  }
  .owakon__heading {
    margin-bottom: 20px;
  }
  .owakon__heading span {
    font-size: 27px;
    letter-spacing: 0.15em;
  }
  .owakon__image {
    width: 100%;
    margin-bottom: 20px;
  }
  .owakon__image img:first-of-type {
    display: none;
  }
  .owakon__image img:last-of-type {
    display: block;
  }
  .owakon__link a {
    width: 100%;
  }
  .owakon__link a span {
    line-height: 1.25;
  }
  .owakon__link a br {
    display: block;
  }
}

.recruit {
  position: relative;
}
.recruit__feed {
  position: absolute;
  top: 68px;
}
.recruit__pattern {
  position: relative;
  z-index: 5;
}
.recruit__inner {
  position: relative;
  z-index: 5;
  padding-top: 50px;
  padding-bottom: 130px;
  background-color: #FAF5EC;
}
.recruit__inner::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-100% + 1px));
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50vw 198px 50vw;
  border-color: transparent transparent #FAF5EC transparent;
  content: "";
}
.recruit__heading {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.recruit__lead {
  width: 417px;
  margin: 0 auto 50px;
  line-height: 1.8125;
  letter-spacing: 0.025em;
  text-align: center;
}
.recruit__list {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 82.8%;
  margin: 0 auto 180px;
}
.recruit__item {
  width: 31.55%;
  border-radius: 10px;
  overflow: hidden;
}
.recruit__catch {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 56.4%;
}
.recruit__link a {
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .recruit__heading {
    top: -50px;
  }
  .recruit__inner {
    padding-top: 70px;
  }
  .recruit__inner::before {
    transform: translate(-50%, calc(-100% + 1px));
    border-width: 0 50vw 100px 50vw;
  }
  .recruit__list {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 576px) {
  .recruit__inner {
    padding-top: 105px;
    padding-bottom: 80px;
  }
  .recruit__inner::before {
    border-width: 0 50vw 60px 50vw;
  }
  .recruit__feed {
    top: 30px;
  }
  .recruit__heading {
    top: 10px;
  }
  .recruit__lead {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 20px;
    font-size: 14px;
    text-align: left;
  }
  .recruit__list {
    width: 100%;
    margin-bottom: 80px;
    padding: 0 20px;
  }
}

.instagram {
  padding-top: 130px;
  padding-bottom: 140px;
}
.instagram__heading {
  margin-bottom: 40px;
  text-align: center;
}
.instagram__link {
  margin-top: 70px;
}
.instagram__link a {
  margin: auto;
}
@media screen and (max-width: 576px) {
  .instagram {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .instagram__heading {
    margin-bottom: 30px;
  }
  .instagram__link {
    margin-top: 50px;
  }
}/*# sourceMappingURL=front-page.css.map */