.service-title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.service-lead {
  font-size: 20px;
  color: #4a5a60;
  margin-bottom: 60px;
  line-height: 1.7;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* カード全体 */
.service-item {
  border: 1px solid #d9dee2;
  border-radius: 32px;
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  text-decoration: none;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}


.service-item:hover {
  background: #f8fbfc;
  border-color: #b4c8cd;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}


/* サムネイル画像 */
.service-thumb {
  flex: 0 0 120px;
  height: 120px;
  border-radius: 24px;
  overflow: hidden;
  background: #eef3f5;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキスト部分 */
.service-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-text .ja {
  font-size: 20px;
  font-weight: 700;
  color: #102a33;
}

.service-text .en {
  font-size: 12px;
  color: #6b7f86;
  letter-spacing: 0.12em;
}

.service-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #5b6b71;
}

/* 矢印ボタン */
.service-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #d9dee2;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #0f2e36;
  flex: 0 0 auto;
  transition: all 0.2s ease;
}

.service-item:hover .service-arrow {
  background: #0f2e36;
  color: #ffffff;
  border-color: #0f2e36;
}


.service-item:hover .service-arrow {
  background: #0f2e36;
  color: #fff;
}

/* スマホ時：縦積みカード */
@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
    border-radius: 24px;
  }

  .service-thumb {
    width: 100%;
    height: 240px;
    flex: 0 0 auto;
  }

  .service-body {
    width: 100%;
  }

  .service-text .ja {
    font-size: 18px;
  }

  .service-desc {
    font-size: 12px;
  }

  .service-arrow {
    margin-left: auto;
    margin-top: 8px;
  }
}