@charset "UTF-8";
/* =========================================================
   USTOOL.jp  -  tools（/tools/ ツール一覧）
   base.css → page.css のあとに読む。
   ========================================================= */

/* ツール一覧の行（カードより情報量を詰めて一覧性を優先する） */
.toollist{ margin-top:clamp(14px,2vw,20px); }
.toolrow{
  display:flex; align-items:flex-start; gap:14px;
  padding:clamp(13px,1.8vw,17px) 2px;
  border-bottom:1.5px dotted var(--line-soft);
}
.toolrow__body{ flex:1; min-width:0; }
.toolrow__name{
  font-family:var(--font-round); font-weight:700;
  font-size:clamp(15px,1.8vw,17px); line-height:1.6; color:var(--teal);
}
.toolrow__name a{ text-decoration:underline; text-decoration-color:transparent;
  text-underline-offset:4px; transition:text-decoration-color .18s; }
.toolrow__name a:hover{ text-decoration-color:currentColor; }
.toolrow__desc{
  margin-top:4px; font-size:14px; color:var(--ink-soft); line-height:1.9;
}
.toolrow__desc [lang="en"]{ color:var(--teal); font-size:.92em; }
/* 未公開の行は色を落とす */
.toolrow--soon .toolrow__name{ color:var(--ink-soft); }
