.underMV {
  background-image: url(../images/service_bg.webp);
}

/* s-service */
.s-service {
  padding-top: 50px;
}
.s-service p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8;
}
.s-service p span {
  color: #001961;
  font-size: 28px;
}

/* s-step */
.s-step {
  padding-top: 50px;
}
.s-step__card {
  position: relative;
  width: calc(33.3333333333% - 20px);
  border: solid 1px #001961;
}
.s-step__card .num {
  padding: 5px;
  background-color: #001961;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.s-step__card .cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px 15px;
}
.s-step__card .cont h3 {
  margin: 20px 0;
  color: #001961;
  font-size: 22px;
  font-weight: 600;
}
.s-step__card .cont dl {
  margin-bottom: 15px;
  border: solid 1px #cfd5e6;
}
.s-step__card .cont dt {
  padding: 5px;
  background-color: #f2f4f9;
  color: #001961;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.s-step__card .cont dt small {
  display: block;
  font-size: 14px;
}
.s-step__card .cont dd {
  padding: 10px;
  border-top: solid 1px #cfd5e6;
  font-size: 16px;
  font-weight: 500;
}
.s-step__card:not(:last-of-type)::after {
  position: absolute;
  top: 45%;
  right: -24px;
  content: "";
  width: 17px;
  height: 27px;
  background-image: url(../images/icon_arrow_simple.webp);
  background-size: cover;
}
.s-step__card-wrapper {
  display: flex;
  gap: 30px;
}

/* s-reason */
.s-reason {
  padding-top: 50px;
  padding-bottom: 100px;
  background-image: url(../images/column_bg.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.s-reason__card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 20px);
  min-height: 212px;
  background-color: #eff3fa;
}
.s-reason__card p {
  color: #001961;
  font-size: 22px;
  font-weight: 500;
}
.s-reason__card small {
  font-size: 14px;
}
.s-reason__card::before {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #a0b6de;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.s-reason__card:nth-of-type(1)::before {
  content: "01";
}
.s-reason__card:nth-of-type(2)::before {
  content: "02";
}
.s-reason__card:nth-of-type(3)::before {
  content: "03";
}
.s-reason__card:nth-of-type(4)::before {
  content: "04";
}
.s-reason__card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-bottom: 160px;
}

@media screen and (max-width: 768px) {
  /* s-service sp */
  .s-service p {
    font-size: 16px;
  }
  .s-service p span {
    font-size: 18px;
  }
  /* s-step sp */
  .s-step {
    padding-top: 30px;
  }
  .s-step__card {
    width: 100%;
  }
  .s-step__card .num {
    font-size: 14px;
  }
  .s-step__card .cont {
    padding: 0 15px 15px;
  }
  .s-step__card .cont h3 {
    font-size: 18px;
  }
  .s-step__card .cont dl {
    width: 100%;
    margin-bottom: 15px;
  }
  .s-step__card .cont dt {
    font-size: 16px;
  }
  .s-step__card .cont dt small {
    font-size: 12px;
  }
  .s-step__card .cont dd {
    font-size: 14px;
  }
  .s-step__card:not(:last-of-type)::after {
    top: 101%;
    right: unset;
    left: 48%;
    rotate: 90deg;
  }
  .s-step__card-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  /* s-reason sp */
  .s-reason {
    padding-top: 30px;
    padding-bottom: 100px;
  }
  .s-reason__card {
    min-height: 160px;
    width: calc(50% - 5px);
  }
  .s-reason__card p {
    font-size: 16px;
  }
  .s-reason__card small {
    font-size: 10px;
  }
  .s-reason__card::before {
    font-size: 23px;
  }
  .s-reason__card-wrapper {
    gap: 10px;
    margin-bottom: 50px;
  }
}