/* site-chrome.local.css — soushin-suggest.link固有のsite-chrome拡張スタイル。
 * ★rolloutのCanonical freshness判定対象外。以下を扱う:
 *   1. logoSrc(kimitolink-mark.png)がマーク単体画像のため、site-chrome.local.jsが追加する
 *      可視ブランド名テキストのスタイル
 *   2. rootページ限定で復元する旧ヘッダーCTA（.nav-cta）の見た目。
 *      2026-09-03実測(soushin-suggest-link-96)で消失を発見し、旧index.htmlの
 *      a.button/.nav-cta定義から移植した（新デザインにしない）。
 */
.site-chrome-brand-text {
  font-weight: 800;
  font-size: 15px;
  margin-left: 8px;
  color: #0f172a;
}

/* 旧 index.html の a.button 相当（accent色は正本config.jsonの--site-chrome-accentを使う） */
#site-nav a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--site-chrome-accent);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 12px;
}
/* 旧 .nav-cta 相当（デスクトップ幅でのpadding/font-size調整） */
#site-nav a.nav-cta { padding: 9px 18px; font-size: 12.5px; flex-shrink: 0; }
@media (max-width: 480px) {
  #site-nav a.nav-cta { display: none; }
}
