.p-topArea{
  min-height: 0;
  padding: 1rem 0;
}

article{
  font-family: "Noto Sans JP", sans-serif;
}

.service_lead{
  @media screen and (min-width:1000px) {
    text-align: center;
  }
}
.service_headline{
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
  @media screen and (min-width:1000px) {
    margin-bottom: 3rem;
  }
}
.service_headline::after{
  content: '';
  width: 80px;
  height: 4px;
  display: inline-block;
  background-color: #2282c5;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 40px);
}
.service_list{
  list-style: none;
  padding: 0;
  margin: 0;
  @media screen and (min-width:1000px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.service_list img{
  border-radius: 1rem;
}
.service_list h2{
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin: 1rem auto;
}
.service_more a{
  color: #FFF;
  display: block;
  width: 80%;
  background: #2282c5;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border-radius: 100rem;
  padding: 0.8rem;
  margin: 1.5rem auto 3rem;
  position: relative;
  @media screen and (min-width:1000px) {
    margin-bottom: 0;
  }
}
.service_more a::after{
  content:'';
  width: 20px;
  height: 20px;
  background-image: url(../img/service/more_arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
}