.helpservices-section {
  padding: 2rem;
  padding-bottom: 3rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  margin-bottom: 2rem;
}

.helpservices-section h2 {
  margin-top: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}

.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  border-left: 4px solid #228b22;
  padding-left: 8px;
}

.service-item ul {
  margin: 0 0 1rem 1.2rem;
  line-height: 1.6;
}

.service-item .note {
  margin-top: 1rem;
}

.note {
  font-size: 1rem;
  background: #f9f9f9;
  border-left: 3px solid #ccc;
  padding: 10px 12px;
  margin-top: 12px;
  line-height: 1.6;
}

.support-summary {
  margin-top: 2rem;
}

.support-summary .note {
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.5rem;
}

/* =========================
   スマホ表示用
   ========================= */

@media (max-width: 768px) {

  .helpservices-section {
    padding: 1rem;
    padding-bottom: 2rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-item {
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .service-item ul {
    margin-left: 0;
    padding-left: 1.2rem;
  }

  .note {
    font-size: 1rem;
  }
}