@charset "UTF-8";

/* デフォルトでは `:target::before` を無効化し、JavaScript で制御する */
:target::before {
  content: "";
  display: none !important; /* デフォルトは無効 */
}

#anc01 {
  position: static !important;
  overflow: visible !important;
}

/* 「・」項目横並び整列用テーブル定義 */
table.clean {
  border-collapse: collapse;
  margin: left;
}

table.clean td {
  border: none;
  padding: 0em 0.5em;
  text-align: left;
  min-width: 100px;
}

/* 「・」マーカー */
table.clean td::before {
  content: '・';
  color: black;
}

/* マーカなし */
table.clean td.no-maeker::before {
  content: none;
}