/* =====================================================================
   style.css — 血液型の相性・特徴 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* 画面上部の免責ノート */
.btc-notice {
  margin: 12px 0 0;
  padding: 10px 14px;
  border: 1px solid var(--sg-border, #e5e7eb);
  border-left: 4px solid #d6336c;
  border-radius: 8px;
  background: var(--sg-subtle-bg, #fff5f7);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--sg-muted-fg, #555);
}

/* 血液型の選択（大きめの選択チップ） */
.btc-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sg-space-1, 4px);
}
.btc-choice {
  position: relative;
  cursor: pointer;
}
.btc-choice input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.btc-choice span {
  display: inline-block;
  min-width: 3.4em;
  text-align: center;
  padding: 8px 14px;
  border: 1px solid var(--sg-border, #e5e7eb);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--sg-card-bg, #fff);
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.btc-choice input:checked + span {
  background: #d6336c;
  border-color: #d6336c;
  color: #fff;
}
.btc-choice input:focus-visible + span {
  outline: 2px solid var(--sg-accent, #3b5bdb);
  outline-offset: 2px;
}

/* 結果 */
.btc-pair {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 4px;
}
.btc-stars {
  font-size: 1.35rem;
  letter-spacing: 2px;
  color: #f08c00;
  margin: 2px 0 8px;
}
.btc-comment {
  line-height: 1.85;
  margin: 0 0 12px;
}
.btc-empty {
  color: var(--sg-muted, #777);
  margin: 4px 0;
}

/* 傾向カード */
.btc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.btc-traits {
  border: 1px solid var(--sg-border, #e5e7eb);
  border-radius: 10px;
  padding: 12px 14px;
}
.btc-traits__head {
  font-weight: 600;
  margin: 0 0 6px;
}
.btc-traits__desc {
  line-height: 1.8;
  margin: 0 0 8px;
  font-size: 0.94rem;
}
.btc-traits__sub {
  font-size: 0.8rem;
  color: var(--sg-muted, #777);
  margin: 8px 0 4px;
  font-weight: 600;
}
.btc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.btc-chip {
  display: inline-block;
  font-size: 0.82rem;
  border: 1px solid var(--sg-border, #e5e7eb);
  border-radius: 999px;
  padding: 2px 10px;
  color: var(--sg-muted-fg, #555);
}

/* 結果内の免責 */
.btc-disclaimer {
  margin-top: 12px;
  color: var(--sg-muted, #777);
}
