/* =========================
   事業内容セクション（全体）
========================= */

.services-page-section {
  /* PC版：ヘッダーから適度に離すために広めに設定 */
  padding-top: 100px; 
  padding-bottom: 80px;
}

/* セクション見出し(H1) */
.services-page-section h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 15px;
}

/* 冒頭のリード文 */
.services-page-section .lead-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
}

/* =========================
   サービス内容の白いカード
========================= */

.service-block {
  margin-bottom: 60px;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center; /* カード内の要素を基本中央寄せに */
}

.service-block h2 {
  font-size: 1.8rem;
  color: #00C4FF;
  margin-bottom: 20px;
  text-align: center; /* 【修正】中央寄せに変更 */
  display: block;    /* 中央寄せを確実にするためblockに */
}

/* カード内の説明文 */
.service-block .service-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   機器ギャラリー
========================= */

.equipment-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.equipment-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
}

.equipment-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.equipment-item p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #333;
}

.contact-cta {
  text-align: center;
}

.contact-cta p {
  line-height: 1.8;      /* 行間を少し広げて読みやすく */
  max-width: 800px;      /* 文字が横に広がりすぎないように制限 */
  margin: 0 auto 20px;   /* 中央に配置し、下のボタンとの間隔を空ける */
}

/* =========================
   レスポンシブ（スマホ版の設定を固定）
========================= */

@media (max-width: 768px) {
  .services-page-section {
    /* 他のページと同じ高さを維持するため、ここはいじりません */
    padding-top: 40px; 
  }

  .service-block {
    padding: 20px;
  }

  .equipment-gallery {
    gap: 15px;
  }
}