@charset "UTF-8";
/* CSS Document */

/*
-----------------------------
フォームのスタイル
-----------------------------*/

table {
  border-collapse: separate;   /* ←これ重要 */
  border-spacing: 0 16px;      /* 横 縦（縦だけ広げる） */
}

.EasyRightTd {
  position: relative;
  padding-left: 12px; /* 文字との余白 */

}

.EasyRightTd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;    /* 上の余白（ここで線を切る） */
  bottom: 8px; /* 下の余白（ここで線を切る） */
  width: 1px;
  background: #ccc;
}