/* ========================================
   セクション2：問題提起 + 私たちの答え
   ファイル: section2-message.css
   更新日: 2025年1月
======================================== */

.section-message {
  padding: 100px 40px;
 background: #f5f5f7;  
}

.section-message__inner {
  max-width: 900px;
  margin: 0 auto;
}

/* 小見出し */
.section-message__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #0071e3;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  padding: 8px 16px;
  background: rgba(0, 113, 227, 0.08);
  border-radius: 4px;
}

/* 問題提起 */
.section-message__problem {
  margin-bottom: 60px;
}

.section-message__question {
  font-size: 28px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 24px;
  line-height: 1.4;
}

.section-message__text {
  font-size: 16px;
  color: #1d1d1f;
  line-height: 2;
  margin-bottom: 20px;
}

.section-message__text--gray {
  color: #6e6e73;
}

.section-message__text--strong {
  font-weight: 500;
}

.section-message__examples {
  background: #f5f5f7;
  border-radius: 8px;
  padding: 24px 28px;
  margin: 24px 0;
}

.section-message__example-item {
  font-size: 15px;
  color: #1d1d1f;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.section-message__example-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #0071e3;
  border-radius: 50%;
}

.section-message__example-item:last-child {
  margin-bottom: 0;
}

/* 宣言 */
.section-message__declaration {
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 48px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

/* バリューカード */
.section-message__values {
  display: flex;
  gap: 24px;
}

.section-message__value-card {
  flex: 1;
  background: #fafafa;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.section-message__value-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.section-message__value-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0071e3;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.section-message__value-title {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 12px;
  line-height: 1.4;
}

.section-message__value-desc {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.8;
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 900px) {
  .section-message {
    padding: 80px 24px;
  }

  .section-message__question {
    font-size: 24px;
  }

  .section-message__values {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .section-message {
    padding: 60px 16px;
  }

  .section-message__label {
    font-size: 12px;
  }

  .section-message__question {
    font-size: 20px;
  }

  .section-message__text {
    font-size: 15px;
  }

  .section-message__declaration {
    font-size: 18px;
  }

  .section-message__value-card {
    padding: 24px 20px;
  }
}
