/* =========================================================
   ① 本文中の申込CTAバンド（inline-cta）
   ⑥ ファーストビュー直下の信頼バッジ（trust-bar）
   index.html で使用。既存スタイルは変更せず追加のみ。
   ========================================================= */

/* ---------------------------------------------------------
   ⑥ 信頼バッジ（マーキー直後の独立帯）
   ※ ヒーロー内に置くとマーキー（margin-top:-120px）と重なるため、
     マーキー直後に独立した帯として配置する。
--------------------------------------------------------- */
.trust-bar {
  background: #F4FBF8;                 /* ごく薄いブランドグリーン */
  border-top: 1px solid rgba(29, 158, 117, 0.16);
  border-bottom: 1px solid rgba(29, 158, 117, 0.16);
  padding: 16px 20px;
}

/* バッジ帯をヒーロー直下に置いたため、マーキーの食い込み（負マージン）を
   打ち消し、帯の下に重ならず並ぶようにする。
   id+class の specificity で flows.css の各ブレークポイント指定を上書き。 */
#flow-showcase.flow-showcase { margin-top: 0; }

.trust-bar-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 30px;
}

.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0E5E45;                      /* 深緑 */
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-bar-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #1D9E75;                      /* チェックの色 */
}

@media (max-width: 700px) {
  .trust-bar { padding: 13px 14px; }
  .trust-bar-list { gap: 9px 16px; }
  .trust-bar-item { font-size: 0.82rem; gap: 6px; }
  .trust-bar-item svg { width: 16px; height: 16px; }
}

/* ---------------------------------------------------------
   ① 申込CTAバンド（本文セクションの区切りに再掲）
--------------------------------------------------------- */
.inline-cta {
  background: linear-gradient(135deg, #1D9E75 0%, #0E5E45 100%);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  padding: 48px 20px;
}

.inline-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.inline-cta-lead {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 60, 40, 0.25);
}

.inline-cta-lead strong {
  color: #F3C94A;                      /* ゴールドで強調 */
  font-weight: 900;
}

.inline-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 56px;
  background: #f7941d;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 40, 25, 0.35);
  transition: transform 0.18s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.inline-cta-btn:hover {
  background: #e57a00;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 40, 25, 0.42);
}

.inline-cta-btn-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.96;
}

.inline-cta-btn-main {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.inline-cta-link {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.inline-cta-link:hover { opacity: 0.8; }

@media (max-width: 700px) {
  .inline-cta { padding: 40px 16px; }
  .inline-cta-lead { font-size: 1.05rem; }
  .inline-cta-btn { padding: 14px 40px; }
  .inline-cta-btn-main { font-size: 1.25rem; }
  .inline-cta-link { font-size: 0.88rem; }
}
