/* slot側の枠は使わない */
.slot-antenna-global{border:none !important;background:transparent;padding:0 !important}

/* ラッパー（スクロールバーは右に1本） */
.antg{
  height:350px;
  overflow:auto;
  border:1px solid #e6e6e6;
  border-radius:8px;
  background:#fff;
  padding:4px;
}

/* 2列 */
.antg-cols{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.antg-col{min-width:0}

/* 画面幅が狭いときは1列にする */
@media (max-width:1023px){
  .antg-cols{grid-template-columns:1fr}
}

/* 行（上下3pxに変更） */
.antg-list{list-style:none;margin:0;padding:0}
.antg-item{display:flex;align-items:center;gap:0;padding:3px 3px}
.antg-item + .antg-item{border-top:1px dotted #cfd1d4}

/* 先頭マーク */
.antg-mark{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  color:#ff4500;
}
.antg-mark__svg{
  width:16px;
  height:16px;
  display:block;
}

/* タイトル：1行・省略。フォント14px */
.antg-title{
  display:block;min-width:0;flex:1 1 auto;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  color:#000;text-decoration:none;font-size:14px;
}
.antg-title:hover{opacity:.72;text-decoration:none}
