body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-white);
  font-size: 1.6em;
  line-height: 2.4;
  text-align: left;
}
main {
  font-size: 1.6em;
  line-height:　1.5;
  text-align: center;
}
.service{
  padding: 100px 0;
}
.service__innner{
  max-width: 1200px;
  padding: 0 100px;
  margin: 0 auto;
}
.service__innner h1 {
  font-size: 4.0rem;
  font-weight: 600;
  line-height: 1.5;
  color: #173D80;
  margin-bottom: 20px;
}
.service__innner h2 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: #173D80;
  margin-bottom: 50px;
}
.service__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #001738;
  border-bottom: solid 1px #B3B3B3;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.service__img {
  max-width: 750px;
  margin: 0 auto;
}
.service__img li {
  margin-bottom: 40px;
}
.service__img_pc{
  display: block;
}
.service__img_sp{
  display: none;
}
@media (max-width: 800px) {
  .service__innner{
  padding: 0 40px;
}
}
@media (max-width: 600px) {
  .service__img_pc{
    display: none;
  }
  .service__img_sp{
  display: block;
  }
}