/* ===== 信頼セクション最適化CSS ===== */

/* 基本レイアウト */
.trust-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
  position: relative;
  overflow: hidden;
}


/* タイトル部分 */
.trust-section .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  color: #1a237e;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.trust-section .section-icon {
  font-size: 1.2em;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* メッセージ部分 */
.trust-message {
  text-align: center;
  margin-bottom: 4rem;
}

.trust-text {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.8;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.03em;
  max-width: 800px;
  margin: 0 auto;
}

/* 統計情報 */
.trust-stats {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin: 4rem 0;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-width: 180px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #4caf50);
}


.trust-number {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #0066cc;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #0066cc, #0052a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #546e7a;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* 強調テキスト */
.trust-emphasis {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #333;
  text-align: center;
  margin: 2rem auto;
  max-width: 700px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-highlight {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #d32f2f;
  text-align: center;
  margin: 3rem auto;
  font-weight: 800;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
  width: 100%;
}

.trust-highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d32f2f, transparent);
}

/* ミッションステートメント */
.mission-statement {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  margin: 4rem auto;
  max-width: 800px;
  text-align: center;
  position: relative;
}

.mission-statement::before {
  content: '″';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 80px;
  color: #e3f2fd;
  font-family: Georgia, serif;
}

.mission-text {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.mission-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #333;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* 最終CTA */
.final-cta {
  text-align: center;
  margin-top: 5rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
  border-radius: 30px;
}

.final-cta-text {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #333;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.final-action-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #00c300, #00a000);
  color: white;
  padding: 20px 50px;
  border-radius: 50px;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,195,0,0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.final-action-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,195,0,0.4);
  background: linear-gradient(135deg, #00d400, #00b000);
}

.final-action-button i {
  font-size: 1.5em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .trust-section {
    padding: 60px 20px;
  }
  
  .trust-stats {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .trust-stat {
    width: 90%;
    max-width: 300px;
  }
  
  .mission-statement {
    padding: 2rem 1.5rem;
    margin: 3rem 1rem;
  }
  
  .final-action-button {
    padding: 15px 30px;
  }
  
  .trust-highlight::after {
    bottom: -5px;
    width: 60px;
    height: 3px;
  }
}

/* アクセシビリティ改善 */
@media (prefers-reduced-motion: reduce) {
  .trust-section::before,
  .trust-stat,
  .final-action-button {
    animation: none;
    transition: none;
  }
}

/* ダークモード対応（オプション） */
@media (prefers-color-scheme: dark) {
  .trust-section {
    background: linear-gradient(135deg, #2a2e3f 0%, #1a1f2e 100%);
  }
  
  .trust-section .section-title {
    color: #ffffff !important;
  }
  
  .trust-stat,
  .mission-statement {
    background: #3a3e4f;
    color: #ffffff;
    border: 2px solid #4a4e5f;
  }
  
  .trust-text,
  .trust-emphasis,
  .final-cta-text,
  .mission-text,
  .mission-subtitle {
    color: #e0e0e0 !important;
  }
  
  .trust-number {
    color: #4fc3f7 !important;
  }
  
  .trust-label {
    color: #b0b0b0 !important;
  }
  
  .trust-highlight {
    color: #ffeb3b !important;
  }
}