section p{
	text-align:center;
}

section a img {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

section a img:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* パスワードのテーブル */
section table{
	border-collapse:collapse;
	margin:auto;
	width: 100%;
	max-width: 400px;
}

section table th{
	border:1px solid rgba(255, 255, 255, 0.1);
	text-align:center;
 	background-color:rgba(255, 255, 255, 0.1); /* ←追加提案 */
}
section table td{
	border:1px solid rgba(255, 255, 255, 0.1);
	text-align:center;
}

/* パスワードの説明 */
section .notice {
	font-style: italic;
	font-weight: bold;
	color: gray;
}

