

.business-section {
  width: 100%;
}

.business-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 上部ヘッダーエリア（夜景背景画像） */
.business-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0)), url("/common/img/home/bg_business.png"); /* 夜景背景画像 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #ffffff;
  padding-top: 100px;
  padding-bottom: 140px; /* 白カードを重ねるための下部余白 */
}

.business-title {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: -0.01em;
  margin: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.business-sub-title {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.business-lead {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin: 0;
  opacity: 0.95;
}

/* 下部コンテンツエリア（白カード重ね） */
.business-content {
  margin-top: -100px; /* 上部ヘッダーへ重ねる調整 */
  padding-bottom: 80px;
}

/* 中央の白いカード枠 */
.business-white-card {
  background-color: #ffffff;
  padding: 45px 40px 50px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* 2列グリッド配置 */
.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 50px;
}

/* 各サービスカード */
.business-card-item {
  display: flex;
  flex-direction: column;
}

/* 灰色の画像エリア */
.business-card-img {
  width: 100%;
  aspect-ratio: 16 / 8;
  background-color: #cccccc; /* 画像未読み込み時のグレー */
  overflow: hidden;
  margin-bottom: 20px;
}

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

/* カードテキストエリア */
.business-card-body {
  display: flex;
  flex-direction: column;
  align-items: center; /* カテゴリ、タイトル、ボタン等を中央揃え */
  text-align: center;  /* テキスト全体の配置（タイトル等） */
  flex-grow: 1;
}

/* カテゴリ（赤文字） */
.card-category {
  font-size: 12px;
  font-weight: bold;
  color: #c81326; /* ブランドカラーの赤 */
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
  text-align: center;
}

/* タイトル（下部ボーダー追加） */
.card-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 16px 0;
  color: #222222;
  padding-bottom: 16px;
  width: 100%;
  border-bottom: 1px solid #e5e5e5; /* タイトル下のグレー線 */
  text-align: center;
}

/* 説明文（本文は左揃えで見やすく配置） */
.card-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #444444;
  margin: 0 0 20px 0;
  text-align: left; /* 本文は画像の通り左揃え */
  flex-grow: 1;     /* ボタン位置を最下部に揃える */
  width: 100%;
}

/* SPECIAL WEBボタン用ラッパー配置（中央揃え） */
.business-card-body .btn02 {
  margin: auto 0 0 0; /* 下部に固定 */
  display: flex;
  justify-content: center;
  width: 100%;
}

/* スマホ対応 (768px以下) */
@media (max-width: 768px) {
  .business-header {
    padding-top: 45px;
    padding-bottom: 100px;
  }

  .business-title {
    font-size: 22px;
  }

  .business-lead {
    font-size: 12px;
  }

  .business-content {
    margin-top: -70px;
    padding-bottom: 50px;
  }

  .business-white-card {
    padding: 25px 20px 35px;
  }

  .business-grid {
    grid-template-columns: 1fr; /* 1列に変更 */
    row-gap: 40px;
  }
}