/* 導入効果やメリットセクション */
.benefits-section {
  width: 1440px;
  height: 1018px;
  background-color: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.benefits-section .container {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトル「導入効果やメリット」 */
.benefits-section .section-title {
  width: 1440px;
  margin: 0;
  padding: 50px;
  text-align: left;
}

/* グリッドレイアウト */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 393px);
  gap: 30px;
  width: 1240px;
  margin: 0 auto;
}

/* カード */
.benefit-card {
  width: 393px;
  display: flex;
  flex-direction: column;
}

/* 画像 */
.benefit-image {
  width: 393px;
  height: 573px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 23px;
}

.benefit-image img {
  width: 393px;
  height: 648px;
  object-fit: contain;
  display: block;
}

/* タイトル */
.benefit-title {
  font-family: noto-sans-jp, sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #2c2c2c;
  margin: 0 0 15px;
  text-align: center;
}

/* 説明文 */
.benefit-description {
  font-family: noto-sans-jp, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #B3B3B3;
  margin: 0;
}
