/* PW保存ログインID表示エリア */
#idlist{
  background-color: white;     /* 背景色 */
  position: absolute;
  z-index: 2;                  /* ！変更時要考慮！ 重なり順の指定 */
  border-style: solid;         /* 枠線の種類 */
  border-width: 1px;           /* 枠線の太さ */
  border-color: gainsboro;     /* 枠線の色 */
  padding: 5px;                /* 余白 */
}

a.loginid{
  margin: 0px;
  padding: 0px;
}


/* 一覧からログインID選択中の背景色 */
div#loginid a{
	display: block;
	color: black;               /* 色 */
	text-decoration: none;      /* 文字装飾なし */
}
div#loginid a:hover {
  background-color: lightcyan;
}

/* パスワード入力可能な場合 */
.pass_enable{
  
  width:120px;
  height:30px;
  font-family:Arial;
  color:#1557b8;
  font-weight:bold;
  font-size:20px;
  line-height:20px;
  padding:3px 2px 0;
  
}

/* パスワード入力不可の場合 */
.pass_disable{
  
  background: lightgrey;         /* 背景色 */
  width:120px;
  height:30px;
  font-family:Arial;
  color:#1557b8;
  font-weight:bold;
  font-size:20px;
  line-height:20px;
  padding:3px 2px 0;
  
}

/* PW保存注意事項表示エリア */
#psv_alert{
  border:2px solid #fc0;
  background-color: white;     /* 背景色 */
  position: absolute;
  z-index: 2;                  /* ！変更時要考慮！ 重なり順の指定 */
  padding: 10px;                /* 余白 */
  height:110px;
  width:350px;
  font-size: 12px;
  line-height:1.3em;
}

