.horizontal_scroll--wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 900px;
  display: grid;
}
@media screen and (max-width: 767px) {
  .horizontal_scroll--wrapper {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

.horizontal_scroll--list {
  display: flex;
}
@media screen and (min-width: 768px) {
  .horizontal_scroll--list {
    position: absolute;
    top: clamp(40px, 4vh, 120px);
    left: 0;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .horizontal_scroll--list {
    flex-direction: column;
  }
}

.horizontal_scroll--item {
  width: clamp(300px, 40vw, 900px);
  padding: 0 clamp(40px, 4vw, 105px);
}
@media screen and (min-width: 768px) {
  .horizontal_scroll--item {
    border-right: 1px solid #222;
  }
}
@media screen and (max-width: 767px) {
  .horizontal_scroll--item {
    width: auto;
    position: relative;
    padding: 0;
    margin: 0;
  }
}

.horizontal_scroll--pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  height: 80px;
}
.horizontal_scroll--pagination + .horizontal_scroll--list {
  top: 200px;
}
@media screen and (max-width: 767px) {
  .horizontal_scroll--pagination {
    height: 50px;
  }
  .horizontal_scroll--pagination.start {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .horizontal_scroll--pagination.end {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .horizontal_scroll--pagination {
    grid-column: 1/-1;
    grid-row: 1/-1;
    place-self: start center;
    margin-top: 80px;
  }
}
.horizontal_scroll--pagination .page-numbers {
  border: 1px solid #150509;
  color: #150509;
  display: grid;
  place-items: center;
  font-size: 28px;
  width: 2em;
}
@media screen and (max-width: 767px) {
  .horizontal_scroll--pagination .page-numbers {
    font-size: 20px;
  }
}
.horizontal_scroll--pagination .page-numbers ::hover {
  background: #FFF;
}
.horizontal_scroll--pagination .page-numbers.current {
  border-color: #97222F;
  color: #97222F;
}
.horizontal_scroll--pagination .prev,
.horizontal_scroll--pagination .next {
  position: relative;
}
.horizontal_scroll--pagination .prev::after,
.horizontal_scroll--pagination .next::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(-135deg) translate(-2px, 2px);
  color: inherit;
}
@media screen and (max-width: 767px) {
  .horizontal_scroll--pagination .prev::after,
  .horizontal_scroll--pagination .next::after {
    width: 10px;
    height: 10px;
  }
}
.horizontal_scroll--pagination .next::after {
  transform: rotate(45deg) translate(-2px, 2px);
}

#our-projects {
  margin: 120px 0 0;
}
@media screen and (max-width: 767px) {
  #our-projects {
    margin: 0;
  }
}

.our-projects--header {
  max-width: 560px;
  width: min(75vw, 560px);
  display: grid;
  gap: clamp(1px, 0.5vw, 16px);
  position: relative;
  padding-left: clamp(40px, 4vw, 105px);
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .our-projects--header {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
    width: auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
}
.our-projects--header::before, .our-projects--header::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.our-projects--header::before {
  aspect-ratio: 443/216;
  width: 220px;
  background-image: url(../images/deco-cloud-lt.svg);
  top: 0;
  left: 0;
  width: 120px;
  top: 50px;
}
.our-projects--header::after {
  aspect-ratio: 1025/382;
  width: 500px;
  background-image: url(../images/deco-cloud-br.svg);
  bottom: -50px;
  right: -400px;
}
@media screen and (max-width: 767px) {
  .our-projects--header::after {
    width: 200px;
    right: 0;
    bottom: 0;
  }
}

.our-projects--header * {
  margin: 0;
  padding: 0;
}

.our-projects--header h2 {
  border-bottom: 1px solid black;
  padding-bottom: 16px;
  margin: 0;
  font-size: clamp(20px, 2.3vw, 36px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .our-projects--header h2 {
    font-size: 20px;
  }
}

.our-projects--header p {
  line-height: 1.8;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .our-projects--header p {
    font-size: 11px;
    padding-bottom: 70px;
  }
}

article.our-projects--project {
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 16px;
}
@media screen and (max-height: 860px) {
  article.our-projects--project {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  article.our-projects--project {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  article.our-projects--project .our-projects--project-img {
    margin: 0;
    padding-bottom: 80px;
    background-image: url(../images/business_title_bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
  }
  article.our-projects--project h4.our-projects--project-title {
    font-size: 14px;
    position: absolute;
    letter-spacing: 0.1em;
    top: 200px;
    left: 20px;
  }
  article.our-projects--project .our-projects--project-content p {
    margin: 0 20px;
    letter-spacing: 0.1em;
  }
  article.our-projects--project .btn_center_sp {
    text-align: center;
    margin: 10px 0;
  }
}
article.our-projects--project .p-cb__item-btn {
  margin: 10px 0 0;
  text-align: left;
}

article.our-projects--project:last-child {
  border: none !important;
}

.our-projects--project-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  margin-bottom: 0.5em;
}
@media screen and (max-height: 860px) {
  .our-projects--project-img {
    aspect-ratio: 21/6;
  }
}

h4.our-projects--project-title {
  font-size: 20px;
  margin: 0;
  position: relative;
}
@media screen and (max-height: 860px) {
  h4.our-projects--project-title {
    font-size: 16px;
  }
}

.our-projects--project-content,
.our-projects--project-content p {
  margin: 0;
  font-size: 12px;
}

.our-projects--project-link {
  margin-top: auto;
}
.our-projects--project-link a {
  width: 10em;
  height: 46px;
  font-size: 16px;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #FFF;
}
/*# sourceMappingURL=maps/project-horizontal_scroll.css.map */