/* ===============================
   serviesの個別
================================ */

/* ヒーロー（導入文） */
.hero {
  padding: 20px;
  background: #e9eef7;
  text-align: center;
}

.hero-services {
  margin-top: 70px;
  min-height: 420px;          /* PCでしっかり見せる */
  display: flex;
  align-items: center;        /* 縦中央 */
  position: relative;
  padding: 120px 20px;
  color: #fff;
}

.is_wrecker{
  background-image: url("../img/hero-1.JPG"); /* ここ画像差し替え */
  background-size: cover;
  background-position: center;
}

.is_battery{
  background-image: url("../img/battery.jpg"); /* ここ画像差し替え */
  background-size: cover;
  background-position: center;
}

.is_fuel{
  background-image: url("../img/fuel.jpg"); /* ここ画像差し替え */
  background-size: cover;
  background-position: center;
}

.is_lockout{
  background-image: url("../img/lockout.jpg"); /* ここ画像差し替え */
  background-size: cover;
  background-position: center;
}

.is_puncture{
  background-image: url("../img/puncture.jpg"); /* ここ画像差し替え */
  background-size: cover;
  background-position: center;
}

.is_transport{
  background-image: url("../img/transport.jpg"); /* ここ画像差し替え */
  background-size: cover;
  background-position: center;
}


/* 大画面ではさらに余裕 */
@media (min-width: 1200px) {
  .hero-services {
    min-height: 520px;
  }
}

@media (max-width: 768px) {

  .hero-services {
    min-height: 240px;
  }
}

.hero-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* 文字を読みやすく */
}


.hero-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-services p {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  max-width: 700px;
}

/* スマホ */
@media (max-width: 768px) {
  .hero-services {
    padding: 80px 20px;
  }

  .hero-services p {
    font-size: 18px;
  }
}

/* 本文 */
.content {
  padding: 24px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  background: #fff;
  box-sizing: border-box;
}

.content h2 {
  margin-top: 24px;
  font-size: 1.4rem;
  border-left: 4px solid #007bff;
  padding-left: 8px;
}

.content ul {
  padding-left: 20px;
}

.content p {
  margin: 12px 0;
}

/* CTA（電話ボタン） */
.cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 24px;
  text-decoration: none;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  font-size: 1.1rem;
  text-align: center;
}

/* フッター */
.site-footer {
  text-align: center;
  padding: 16px 10px;
  background: #222;
  color: #fff;
  font-size: 0.9rem;
}

/* ---------- ▼ スマホ対応 ▼ ---------- */
@media (max-width: 768px) {

  .site-header h1 {
    font-size: 1.4rem;
  }

  .content {
    padding: 16px;
  }

  .cta {
    width: 90%;
    padding: 16px;
    font-size: 1.15rem;
  }
}
