@charset "UTF-8";
.arrow {
  position: relative;
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 2px;
}
.arrow::before {
  border-top: 2px solid currentColor;
  width: 13px;
}
@media screen and (max-width: 767px) {
  .arrow::before {
    border-width: 1.5px;
    width: 10px;
  }
}
.arrow::after {
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .arrow::after {
    border-width: 1.5px;
    width: 5px;
    height: 5px;
  }
}

/* ▼▼▼ 施工実績
=====================================*/
.item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 90px 10%;
}
@media screen and (max-width: 767px) {
  .item_wrap {
    gap: 60px 0;
  }
}
.item_wrap .item {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .item_wrap .item {
    width: 100%;
  }
}
.item_wrap .swiper {
  margin: 0 -18px 25px;
}
.item_wrap .swiper .swiper-slide {
  padding: 0 18px;
}
.item_wrap .swiper .swiper-slide img {
  border-radius: 25px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .item_wrap .swiper {
    margin-bottom: 20px;
  }
}
.item_wrap .ttl {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .item_wrap .ttl {
    font-size: 18px;
  }
}
.item_wrap .ttl span {
  display: block;
  color: #8D938D;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .item_wrap .ttl span {
    font-size: 14px;
  }
}
.item_wrap .red {
  margin-top: 16px;
  color: #D94F58;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .item_wrap .red {
    margin-top: 8px;
    font-size: 14px;
  }
}
.item_wrap .co {
  color: #8D938D;
  font-size: 13px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .item_wrap .co {
    font-size: 12px;
  }
}
.item_wrap .txt {
  margin-top: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.item_wrap .badge {
  position: relative;
}
.item_wrap .badge::after {
  content: "";
  background: url(../img/products/badge.svg) no-repeat center/contain;
  width: 78px;
  height: 78px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .item_wrap .badge::after {
    width: 67px;
    height: 67px;
  }
}

.swiper-button-prev, .swiper-button-next {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.swiper-button-prev::after, .swiper-button-next::after {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid #027B39;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.swiper-button-prev {
  left: 0px;
}
.swiper-button-prev::after {
  -webkit-transform: translateX(25%) rotate(-135deg);
          transform: translateX(25%) rotate(-135deg);
}

.swiper-button-next {
  right: 0px;
}
.swiper-button-next::after {
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}