/* 工法詳細(pc) */
.style-detail-flexbox {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.style-detail-flexbox-child01 {
  width: 48%;
  max-width: 500px;
  margin-right: 20px;
}

.style-detail-flexbox-child01-imgbox {
  width: 100%;
}

.style-detail-flexbox-child01-imgbox img {
  width: 100%;
  vertical-align: bottom;
}

.style-detail-flexbox-child02 {
  width: 48%;
  max-width: 500px;
  display: flex;
  justify-content: space-between;
}

.style-detail-flexbox-child02-imgbox {
  width: 48%;
}

.style-detail-flexbox-child02-imgbox img {
  width: 100%;
  vertical-align: bottom;
}


/* 施工例(pc) */
.case-flexbox {
  display: flex;
  justify-content: center;
}

.case-flexbox-child01 {
  width: 48%;
  max-width: 620px;
  margin-right: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}

.case-flexbox-child01-imgbox {
  width: 48%;
  position: relative;
}

.case-flexbox-child01-imgbox:first-child::after {
  content: '';
  width: 13px;
  height: 13px;
  background-image: url(/assets/img/service/shot-blast/arrow-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translate( 0, -50%);
}

.case-flexbox-child01-imgbox img {
  width: 100%;
  vertical-align: bottom;
}

.case-flexbox-child02 {
  width: 48%;
  max-width: 620px;
  background-color: #d6dcdd;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.case-flexbox-child02__imgbox {
  width: 45%;
  margin-left: 10px;
  margin-right: 7%;
}

.case-flexbox-child02__imgbox img {
  width: 100%;
  vertical-align: bottom;
}

.case-flexbox-child02__text {

}

.case-flexbox-child02__text-list {
  list-style: square;
}

.case-flexbox-child02__text-list-items {

}

.btn.btn__02 {
  margin-left: auto;
  margin-right: auto;
}

/* 使用機械(pc) */
.mashine-detail-flexbox {
  display: flex;
  justify-content: space-between;
}

.mashine-detail-flexbox-child {
  width: 16%;
}

.mashine-detail-flexbox-child-imgbox {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.mashine-detail-flexbox-child-imgbox img {
  width: 100%;
  vertical-align: bottom;
}

.mashine-detail-flexbox-child-title {
  font-size: 18px;
  color: #5f7c42;
  margin-bottom: 5px;
  font-weight: bold;
}

.mashine-detail-flexbox-child-list {
  list-style: inside;
}

.mashine-detail-flexbox-child-list-items {
  font-size: 12px;
  text-indent: -1.6em;
  padding-left: 1.8em;
}


@media screen and (max-width: 1260px) {
  /* 工法詳細(tablet) */
  .style-detail-flexbox {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .style-detail-flexbox-child01 {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .style-detail-flexbox-child02 {
    width: 100%;
    margin-bottom: 30px;
  }

  /* 施工例(tablet) */
  .case-flexbox {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .case-flexbox-child01 {
    width: 100%;
    margin-right: 0;
  }

  .case-flexbox-child02 {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* 使用機械(tablet) */
  .mashine-detail-flexbox {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mashine-detail-flexbox-child {
    width: 25%;
    margin-right: 10px;
    margin-bottom: 30px;
  }

  .mashine-detail-flexbox-child:nth-child(3n) {
    margin-right: 0;
  }

}/* /max-width: 1260px */


@media screen and (max-width: 600px) {
  /* 施工例(sp) */
  .case-flexbox-child01 {
    display: block;
  }

  .case-flexbox-child01-imgbox {
    width: 100%;
    margin-bottom: 40px;
  }

  .case-flexbox-child01-imgbox:first-child::after {
    top: auto;
    bottom: -33px;
    right: 50%;
    width: 20px;
    height: 20px;
    transform: rotate( 90deg);
  }

  .case-flexbox-child02 {
    display: block;
  }

  .case-flexbox-child02__imgbox {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .case-flexbox-child02__text {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* 使用機械(sp) */
  .mashine-detail-flexbox-child {
    width: 48%;
    margin-right: 0;
  }

  .mashine-detail-flexbox-child:nth-child(odd) {
    margin-right: 8px;
  }

  .mashine-detail-flexbox-child-title {
    text-align: center;
  }

  .mashine-detail-flexbox-child-list {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

}/* /max-width: 600px */