@charset "UTF-8";
/* service.html 固有スタイル */

/*---------------------------------
ページヒーロー 背景画像
---------------------------------*/

.page_hero--service {
  background-image: url(../../images/service/hero.jpg);
}

/*---------------------------------
サービスカードグリッド
---------------------------------*/

.service_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .service_grid {
    grid-template-columns: 1fr;
  }
}

/*---------------------------------
サービスカード
---------------------------------*/

.service_card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service_card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

.service_card_img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.service_card_body {
  padding: 1.5rem;
}

.service_card_body h3 {
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--base_color);
  margin-bottom: 0.8em;
  padding-left: 0.8em;
  border-left: 3px solid var(--base_color);
}

.service_card_body h3 i {
  margin-right: 0.5em;
}

.service_card_body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/*---------------------------------
除排雪セクション
---------------------------------*/

.snow_section_inner {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.snow_section_img {
  flex: 0 0 45%;
  border-radius: 4px;
  overflow: hidden;
}

.snow_section_img img {
  width: 100%;
  height: auto;
  display: block;
}

.snow_section_inner .sub_section_lead {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .snow_section_inner {
    flex-direction: column;
  }
  .snow_section_img {
    flex: none;
    width: 100%;
  }
}
