/* 画面下部固定のLINE相談バー（2026-07-23版・新名義 sticky-cta-*。既存 consult-cta とは非衝突） */
/* キャッシュ安全のため新ファイル名で配信。JS不使用・常時表示。base.njk経由の全ページに適用。 */

/* バー高さぶんの余白を確保し、フッター・記事下consult-cta・本文が隠れないようにする（iOSセーフエリア対応） */
body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  box-sizing: border-box;
  background: #102c52;
  /* 士業らしい細いゴールドの罫と、上向きの控えめな影で品を出す */
  border-top: 1px solid rgba(199, 154, 75, .55);
  box-shadow: 0 -2px 14px rgba(7, 26, 62, .22);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  font-family: "Noto Serif JP", serif;
}
.sticky-cta * { box-sizing: border-box; }

.sticky-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.sticky-cta-eyebrow {
  color: #c79a4b;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  white-space: nowrap;
}
.sticky-cta-lead {
  color: #fdfaf3;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.sticky-cta-lead-ext { font-weight: 600; color: #e4dcc8; }

.sticky-cta-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  padding: 8px 18px;
  background: #06C755; /* LINEグリーン正式値・改変禁止 */
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap; /* ラベル改行禁止 */
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(6, 199, 85, .38);
  transition: filter .12s ease, transform .12s ease;
}
.sticky-cta-btn:hover { filter: brightness(.90); }       /* hover=黒10%相当 */
.sticky-cta-btn:active { filter: brightness(.70); transform: translateY(1px); } /* press=黒30%相当 */
.sticky-cta-btn:focus-visible { outline: 3px solid #f0c672; outline-offset: 2px; }
.sticky-cta-ico { flex: 0 0 auto; width: 22px; height: 22px; fill: #fff; }
.sticky-cta-btn-label { display: inline-block; }

/* 中間幅：バーは広がりすぎず中央寄せで間延びを防ぐ（inner max-width で担保済み） */

/* 狭幅（〜360px）：眉ラベルのみ省略。無料の範囲（最大1時間）は縮小して常時表示する */
@media (max-width: 360px) {
  .sticky-cta { padding-left: 10px; padding-right: 10px; }
  .sticky-cta-inner { gap: 8px; }
  .sticky-cta-eyebrow { display: none; }
  .sticky-cta-lead { font-size: 11.5px; }
  .sticky-cta-lead-ext { font-size: 10.5px; }
  .sticky-cta-lead { font-size: 13px; }
  .sticky-cta-btn { padding: 8px 15px; font-size: 14.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta-btn { transition: none; }
  .sticky-cta-btn:active { transform: none; }
}
