/* 各機能の詳細紹介セクション */
.feature-details-section {
  width: 1440px;
  height: 1018px;
  background-color: #f9f9f9;
  padding: 0 0 100px;
}

.feature-details-section .container {
  margin: 0 auto;
  padding: 0 100px;
}

.feature-details-section .section-title {
  width: 1440px;
  color: #2c2c2c;
  text-align: left;
  margin: 0;
  padding: 50px;
}

/* 各機能詳細アイテム */
.feature-detail-item {
  width: 1240px;
  height: 779px;
  background-color: #fff;
  border-radius: 10px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature-detail-item:last-child {
  margin-bottom: 0;
}

/* 上部エリア（画像とコンテンツを横並び） */
.feature-detail-top {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* 画像 */
.feature-detail-visual {
  flex-shrink: 0;
  width: 520px;
  height: 356px;
  border-radius: 12px;
  overflow: hidden;
}

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

/* コンテンツ */
.feature-detail-content {
  flex: 1;
}

/* タイトル */
.feature-detail-title {
  font-family: noto-sans-jp, sans-serif;
  font-weight: 800;
  font-size: 59px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #2c2c2c;
  margin: 0 0 36px;
}

/* 説明文 */
.feature-detail-description {
  font-family: noto-sans-jp, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #2c2c2c;
  margin: 0;
}

/* ポイントリスト（下部） */
.feature-detail-points {
  display: flex;
  gap: 60px;
  position: relative;
}

.feature-detail-point {
  flex: 1;
  max-width: 300px;
  position: relative;
  text-align: center;
  padding: 10px 0;
}

/* 縦線の区切り */
.feature-detail-point:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  width: 1px;
  height: 175px;
  background-color: #e0e0e0;
}

.feature-detail-point-title {
  font-family: noto-sans-jp, sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #2c2c2c;
  margin: 0 0 20px;
}

.feature-detail-point-desc {
  font-family: noto-sans-jp, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #9c9c9c;
  margin: 0;
  text-align: left;
}
