/* ----------------------------------------
  主なサービス
---------------------------------------- */
.service-section {
  width: 70%;
  margin: 50px auto;
}

.service-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image1 {
  flex: 1;
  text-align: center;
}
.service-image1 img {
  width: 60%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  object-position: 80% center; /* 画像を少し右寄りに */
}

.service-image2 {
  flex: 1;
  text-align: center;
}
.service-image2 img {
  width: 60%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  object-position: 90% center; /* 画像を少し右寄りに */
}

.service-image3 {
  flex: 1;
  text-align: center;
}
.service-image3 img {
  width: 60%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.service-image4 {
  flex: 1;
  text-align: center;
}
.service-image4 img {
  width: 70%;
}

.service-content {
  flex: 1;
  padding: 20px;
}

.service-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.6;
}

.service-box {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 0 10px 10px 10px;
  border: 1pt solid #e7f3cc;
  margin-top: 70px;
}

.service-box h3 {
  position: absolute;
  top: -50px;
  left: 0px;
  font-size: 1.2rem;
  padding: 10px;
  color: white;
  border-radius: 0 20px 0 0;
  background-color: #80cccc;
}

.service-box ul {
  padding-left: 20px;
}

.service-box ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}

.service-box ul li::before {
  content: "⚫︎";
  position: absolute;
  left: 0;
  color: #e7f3cc;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .kv-menu {
    display: inline-block;
    bottom: -100px;
  }

  /* サービス */
  .service-section {
    width: 95%;
    margin: 0 auto;
    margin-top: 120px;
  }

  .service-item {
    display: block;
    align-items: center;
    margin-bottom: 80px;
  }

  .service-box {
    position: relative;
    background: white;
    padding: 10px;
    border-radius: 0 10px 10px 10px;
    border: 1pt solid #e7f3cc;
    margin-top: 70px;
  }

  .service-box h3 {
    position: absolute;
    top: -50px;
    left: 0px;
    font-size: 1.2rem;
    padding: 10px;
    color: white;
    border-radius: 0 20px 0 0;
    background-color: #80cccc;
  }

  .service-box ul {
    padding-left: 5px;
  }

  .service-box ul li {
    list-style: none;
    position: relative;
    margin: 10px;
  }
}
