/* Circleタイプのアイコン（P1-04 / P1-18で線画へ）。
   以前は絵文字（🏠📮💞…）を content で出していたが、OSごとに字面も余白も違って
   一覧に並べたときに大きさと位置が揃わなかった。SVGをマスクにして、
   色は style.css の種類ごとのテーマ色をそのまま使う。 */
.ctype {
  display: inline-block;
  width: 1.15em; height: 1.15em;
  margin-right: 7px;
  vertical-align: -.16em;
  border-radius: 0;
  background-color: #98a0b8;
  -webkit-mask-image: var(--ctype-ic); mask-image: var(--ctype-ic);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
  --ctype-ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.9" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3.8l2.5 5.2 5.7.8-4.1 4 1 5.7-5.1-2.7-5.1 2.7 1-5.7-4.1-4 5.7-.8z"/></svg>');
}
/* 一緒に暮らす家族 = 家 */
.ctype.family_home {
  background-color: #ffb37f;
  --ctype-ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.9" stroke-linecap="round" stroke-linejoin="round"><path d="M3.4 10.6 12 3.6l8.6 7"/><path d="M5.8 9.6V20.4h12.4V9.6"/><path d="M9.9 20.4v-4.8h4.2v4.8"/></svg>');
}
/* 離れて暮らす家族 = 離れた二軒 */
.ctype.family_far {
  background-color: #ffd97f;
  --ctype-ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.9" stroke-linecap="round" stroke-linejoin="round"><path d="M2.4 11.6 6.9 7.6l4.5 4"/><path d="M3.9 10.9v8.5h6v-8.5"/><path d="M12.6 13.9 16.9 10.2l4.3 3.7"/><path d="M14.1 13.2v6.2h5.6v-6.2"/></svg>');
}
/* パートナー = ハート */
.ctype.partner {
  background-color: #ff9fc4;
  --ctype-ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.9" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20.2S4.6 15.6 4.6 10.9A4.2 4.2 0 0 1 12 8.2a4.2 4.2 0 0 1 7.4 2.7c0 4.7-7.4 9.3-7.4 9.3z"/></svg>');
}
/* 友だち = 重なる二つの輪 */
.ctype.friends {
  background-color: #7fd8c8;
  --ctype-ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.9" stroke-linecap="round" stroke-linejoin="round"><circle cx="9.2" cy="12" r="5.6"/><circle cx="14.8" cy="12" r="5.6"/></svg>');
}
/* 仕事 = かばん */
.ctype.work {
  background-color: #a6b4ff;
  --ctype-ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.9" stroke-linecap="round" stroke-linejoin="round"><rect x="2.6" y="8.4" width="18.8" height="10.6" rx="1.8"/><path d="M9 8.4V6.6a1.6 1.6 0 0 1 1.6-1.6h2.8A1.6 1.6 0 0 1 15 6.6v1.8"/><path d="M2.6 12.6h18.8"/></svg>');
}
/* そのほか = 星 */
.ctype.custom { background-color: #98a0b8; }
