/* サービス内容ページ(service.html)固有のスタイル。destyle→common→style の後に読み込む */

/*
  h2見出しにmargin-bottomが未設定だったため、直後のリード文と詰まって見えていた。
  他ページ(company.html等)と同程度の余白に揃える。
*/
h2 {
  margin-bottom: 24px;
}

/* セクション①・②共通のリード文(見出しと支援内容カードグリッドの間) */
.service-section__lead {
  max-width: 720px;
  margin: 0 0 32px;
  line-height: 1.7;
}

/*
  支援内容カード:box-shadow + ホバー時の浮き上がり(トップページと共通のスタイル)。
  スクロールフェードイン(.reveal)のopacityもここに統合している。
*/
.support-card {
  box-shadow: 0 2px 8px rgba(13, 59, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.2s ease, opacity 0.5s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(13, 59, 102, 0.14);
}

/* 番号の上に置くアイコン:ブランドカラーの淡い円を背景に敷いたラインアイコン */
.support-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 50%;
  background-color: rgba(31, 191, 174, 0.12);
  color: var(--color-accent);
}

.support-card__icon svg {
  width: 26px;
  height: 26px;
}

.support-card__no {
  font-size: 40px;
  margin-bottom: 4px;
}

.support-card__heading {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--color-text-heading);
}

.support-card p {
  margin: 0;
  font-size: 16px;
}
