/*----- サービス一覧 -----*/
.service .title {
  width: 100%;
  height: 250px;
  font-size: 50px;
  line-height: 250px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  text-shadow: 2px 4px 7px rgba(0, 0, 0, 0.25);
  letter-spacing: 5px;
  background-image: url(https://wanohako.com/hp/wanohako/img/eyecatching.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.service .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 7% 7% 7%;
  box-sizing: border-box;
}

.service .service-card {
  border: 1px solid #F2AAAA;
  border-radius: 12px;
  padding: 28px;
  box-sizing: border-box;
}

.service .service-card-title {
  font-size: 18px;
  font-weight: bold;
  color: #E8334A;
  border-bottom: 2px solid #F26E80;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.service .service-card-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.7;
}

.service .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service .service-list li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #E9E9E9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service .service-list li:last-child {
  border-bottom: none;
}

.service .service-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F26E80;
  flex-shrink: 0;
}

/*----- スマホの場合 -----*/
@media screen and (max-width: 768px) {
  .service .title {
    font-size: 30px;
    height: 170px;
    line-height: 170px;
  }

  .service .service-grid {
    grid-template-columns: 1fr;
    padding: 0 5% 10% 5%;
  }

  .service .service-card {
    padding: 20px;
  }

  .service .service-card-title {
    font-size: 16px;
  }

  .service .service-list li {
    font-size: 13px;
  }
}
