.our-work-header {
  color: var(--primary-color);
  padding: 50px 0px;
}

.our-work-header > h3 {
  font-size: 20px;
  font-weight: normal;
  line-height: 22.72px;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.our-work-header > h1 {
  font-size: 64px;
  font-weight: normal;
  line-height: 76.34px;
  letter-spacing: 0.06em;
  text-align: left;
}

.our-work-body {
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.our-work-body > h2 {
  border-width: 1px 0px;
  border-style: solid;
  border-color: var(--border-gray);
  color: var(--primary-color);
  font-size: 28px;
  font-weight: normal;
  line-height: 34px;
  letter-spacing: 0.05em;
  text-align: left;
}

.out-work-button-filter {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;
}

.out-work-button-filter > a > button {
  padding: 14px 30px 7px 30px;
  border-radius: 5px;
  border: none;
  background-color: transparent;
  transition: 150ms all;
  cursor: pointer;
  font-weight: normal;
  font-size: 15px;
  line-height: 17.89px;
  justify-content: center;
  align-items: center;
}

.out-work-button-filter > a >  button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.out-work-button-filter > a > button.active {
  background-color: var(--primary-color);
  color: #fff;
}

.our-work-list-post {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}
.our-work-list-post .box-our-work {
  width: calc(33.333% - 30px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.our-work-list-post .box-our-work > h2 {
  font-size: 16px;
  font-weight: normal;
  line-height: 23.17px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}

.our-work-list-post .box-our-work > p {
  font-size: 15px;
  font-weight: normal;
  line-height: 26px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 150px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.box-our-work-image {
  position: relative;
  width: 100%;
  height: auto;
}

.box-our-work-image > img {
  width: 100%;
  height: auto;
  height: 245px;
  object-fit: cover;
}

.box-our-work-image .box-our-work-image-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.box-our-work-image-hover > div {
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding: 34px;
}

.box-our-work-image-hover > div > svg {
  width: 47px;
  height: 47px;
}

.box-our-work-image:hover > .box-our-work-image-hover {
  opacity: 1;
}

/*  */

.our-work-body .our-work-body-contact {
  text-align: center;
}

.our-work-contact {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 25px 0px;
  position: relative;
  min-height: 212px;
}

.box-our-work-contact {
  box-sizing: border-box;
  flex: 1;
}

.box-our-work-contact.banner {
  height: 100%;
}

.box-our-work-contact.banner img {
  width: 100%;
  height: auto;
}

.box-our-work-contact.information {
  background: linear-gradient(
    90deg,
    #ffffff 84.32%,
    rgba(255, 255, 255, 0) 98.21%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  position: absolute;
  left: 0;
  width: 60%;
  height: 100%;
  padding: 10px 150px 10px 100px;
}

.box-our-work-contact.information h2 {
  font-size: 15px;
  font-weight: normal;
  line-height: 26px;
  text-align: left;
}

.box-our-work-contact.information p {
  font-size: 15px;
  font-weight: normal;
  line-height: 26px;
  text-align: left;
}

.box-our-work-contact.information a {
  background-color: var(--primary-color);
  color: #fff;
  padding: 6px 38px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  text-align: left;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.box-our-work-contact.information .information-1 {
  width: 100%;
}

.box-our-work-contact.information .information-2 {
  width: 100%;
}

.box-our-work-contact.information .information-1 h2 {
  margin-bottom: 20px;
}

.box-our-work-contact.information .information-2 h2 {
  margin-bottom: 20px;
}

.boxContent {
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 150px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 640px) {
  .our-work-list-post .box-our-work {
    flex: 1 1 calc(33.333% - 30px) !important;
    width: auto;
  }
}
