@charset "utf-8";

.bbox {
  width: 80vw;
  height: 30vh;
  margin: 0 auto;
  background: url("../img/service/bg.jpg") center 35% / cover no-repeat;
}
.cbox ul{
  display: flex;
  width: 80vw;
  margin: 3em auto;
}
.cbox li {
  width: 32%;
  padding: 2em;
  font-size: .9em;
}
.cbox li h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.cbox li h3:before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background: url("../img/service/si1.png") center center / contain no-repeat;
  margin-right: .6em;
}
.cbox li:nth-child(2n) h3:before {
  background: url("../img/service/si2.png") center center / contain no-repeat;
}
.cbox li:last-child h3:before {
  background: url("../img/service/si3.png") center center / contain no-repeat;
}
.cbox li p {
  margin-bottom: 1em;
}

@media screen and (max-width: 1024px) {
  .bbox {
    width: 100%;
  }
  .cbox ul {
    flex-direction:  column;
    width: 90vw;
  }
  .cbox li {
    width: auto;
  }
}