/* soukai2026 | vote.css - 議決権セクション・全ステート */

/* ===== モバイル議決権バナー ===== */
.vote-band {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
}
.vote-band-label {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  white-space: nowrap; flex-shrink: 0;
}
.vote-band-body {
  flex: 1; min-width: 0;
}
.vote-band-sub {
  font-size: 10px; color: rgba(255,255,255,.6);
  margin-bottom: 2px;
}
.vote-band-nums {
  display: flex; align-items: baseline; gap: 2px;
}
.vn {
  font-size: 24px; font-weight: 900; color: var(--white);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.vu {
  font-size: 10px; color: rgba(255,255,255,.6);
  margin-right: 4px;
}
.vsep {
  font-size: 16px; color: rgba(255,255,255,.25);
}
.vote-band-btn {
  background: var(--white); color: var(--purple);
  padding: 10px 16px; font-size: 12px; font-weight: 800;
  display: flex; align-items: center;
  cursor: pointer; border: none; white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s, transform .1s;
}
.vote-band-btn:hover {
  background: #F5F3FF;
}
.vote-band-btn:active {
  transform: scale(.97);
}

/* ===== 議決権行使ページ ===== */
.vote-page { padding: 20px 14px; }
.vote-main-card {
  background: linear-gradient(145deg, var(--purple-dark), var(--purple));
  padding: 22px 18px; margin-bottom: 14px;
}
.vote-tag {
  display: inline-block; background: #FEF3C7; color: #92400E;
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  letter-spacing: 0.04em; margin-bottom: 12px;
}
.vote-title { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 5px; }
.vote-dl { font-size: 11px; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.vote-cd { display: flex; gap: 8px; margin-bottom: 18px; }
.vote-cd-u { background: rgba(255,255,255,.15); padding: 8px 12px; text-align: center; flex: 1; }
.vote-cd-n {
  font-size: 28px; font-weight: 900; color: var(--white);
  line-height: 1; display: block; font-variant-numeric: tabular-nums;
}
.vote-cd-l { font-size: 10px; color: rgba(255,255,255,.7); }
.vote-cd-sep {
  font-size: 22px; color: rgba(255,255,255,.3);
  align-self: flex-start; padding-top: 8px;
}
.vote-btn {
  display: block; width: 100%;
  background: var(--white); color: var(--purple);
  padding: 14px; text-align: center;
  font-size: 15px; font-weight: 800; cursor: pointer;
  border: none; transition: opacity .15s;
}
.vote-btn:hover { opacity: .9; }

/* 注意事項 */
.vote-notes {
  background: var(--white); border: 1px solid var(--border); padding: 14px;
}
.vote-notes h3 {
  font-size: 11px; font-weight: 700; color: var(--text-mid); margin-bottom: 10px;
}
.vote-notes li {
  font-size: 12px; color: var(--text-mid); line-height: 1.7;
  padding-left: 1em; text-indent: -1em; margin-bottom: 4px;
}
.vote-notes li::before { content: '・'; color: var(--purple); }

/* ===== レスポンシブ ===== */
@media (min-width: 768px) {
  .vote-page { padding: 28px 24px; max-width: 640px; }
}
