@charset "utf-8";

#service p.lead {
    font-size: 18px;
    font-weight: bold;
}

#service > img {
  margin-bottom: 20px;
}

#service > .flex {
    margin-top: 30px;
}

#service .flex .box {
    width: 330px;
    background: #eaf8ff;
    padding: 20px;
}

#service .flex .box dt {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.list-mark li::before {
    background-color: #47bcf6;
}

/*選ばれる理由*/
#service .strength ul {
  counter-reset: no;
}

#service .strength ul li {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  background-color: #E9E8E8;
}

#service .strength ul li::before {
  display: inline-block;
  text-align: center;
  counter-increment: no;
  content: counter(no, decimal-leading-zero);
  font-size: 20px;
  line-height: 1.8;
  font-weight: bold;
  color: #fff;
  background-color: #47bcf6;
  padding: 0 8px;
  margin-right: 10px;
}

#service .strength ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

/*対応エリア*/
#service .area dl {
    margin-bottom: 20px;
}

#service .area p:not(.lead) {
    font-size: 15px;
    font-weight: inherit;
}

#service .area dl dt,
#service .area dl dd {
    font-weight: bold;
    font-size: 18px;
}

@media only screen and (max-width: 768px) {
    #service .flex .box {
        width: 100%;
    }
    
    #service .flex .box:not(:last-child) {
        margin-bottom: 20px;
    }

}


