/* ============================================
   トラストバー（信頼バッジ）
   配置: FV直下 → CTA上
   背景: ダーク(#1a2a3a) — 信頼感セクション用
   出典: design/components/trust-bar/trust-bar.css をコピー
   （2026-04-11 バグ修正対応：index.htmlから相対パス汚染を回避するため
    LP配下に複製。Day 4-7 本格スタイリング時に統合方針を再検討）
   ============================================ */

/* LP の .section デフォルト padding を打ち消す */
.trust-bar.section {
  padding: 0;
}

.trust-bar {
  background: #1a2a3a;
  padding: 28px 20px;
}

.trust-bar__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.trust-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-bar__item:last-child {
  border-right: none;
}

.trust-bar__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  height: 42px;
}

.trust-bar__number {
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

.trust-bar__number--text {
  font-size: 22px;
  letter-spacing: 0.05em;
}

.trust-bar__unit {
  font-size: 16px;
  font-weight: bold;
  color: #e5e5e5;
  margin-left: 2px;
}

.trust-bar__reg {
  font-size: 13px;
  color: #e5e5e5;
  vertical-align: super;
  line-height: 1;
}

.trust-bar__label {
  display: block;
  font-size: 14px;
  color: #e5e5e5;
  margin-top: 8px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* ============================================
   SP対応（767px以下）
   2行x2列グリッド
   ============================================ */

@media (max-width: 767px) {
  .trust-bar {
    padding: 20px 16px;
  }

  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .trust-bar__item {
    padding: 14px 12px;
    border-right: none;
  }

  .trust-bar__item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* 上段2つの下に横線 */
  .trust-bar__item:nth-child(1),
  .trust-bar__item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-bar__value {
    height: 36px;
  }

  .trust-bar__number {
    font-size: 28px;
  }

  .trust-bar__number--text {
    font-size: 18px;
  }

  .trust-bar__unit {
    font-size: 14px;
  }

  .trust-bar__label {
    font-size: 14px;
  }
}
