@charset "utf-8";
/* MV */
.page_mv {
  background: url(../img/page_mv.webp) no-repeat center / cover;
}
/* 私たちのしごと */
.work_ourWork {
  background: linear-gradient(180deg, #3877BA 0%, rgba(56, 119, 186, 0.00) 19.71%), linear-gradient(180deg, #5290CD 0%, #5290CD 33.17%, #FFFAE7 60.1%, #FFFAE7 100%);;
}
.work_box {
  display: flex;
  gap: var(--space-20);
  background: var(--light-blue);
  border-radius: 20px;
  padding: var(--space-20);
  margin-bottom: 10px;
  &:last-child {
    margin-bottom: 0;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column-reverse;
  }
}
.work_box--img {
  display: flex;
  gap: 13px;
  @media screen and (max-width: 767px) {
    width: 100%;
    img {
      width: calc((100% - 13px) / 2);
      height: auto;
    }
  }
}
.work_box--item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work_box--title {
  font-size: var(--font-20);
  font-weight: 800;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--dark-blue);
  margin-bottom: 15px;
  transform: rotate(0.05deg);
}
/* 受注先 */
.work_order {
  display: flex;
  gap: 10px;
  @media screen and (max-width :767px) {
    flex-direction: column;
  }
}
.work_order--item {
  padding: var(--space-30);
  background: var(--light-blue);
  border-radius: 20px;
}