@charset "UTF-8";
/* CSS Document */
#contents .anchorText {
  pointer-events: none;
  /* 無効っぽい見た目にする */
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #999;/*ボタン色*/
  color: #666;
  border-bottom: solid 4px #666;
  border-radius: 3px;
}
#check-enable:checked ~ .anchorText {
  pointer-events: auto;
  /* 有効可されたっぽい見た目にする */
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #ccff99;/*ボタン色*/
  color: #333;
  border-bottom: solid 4px #99cc66;
  border-radius: 3px;
}
.anchorText:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  border-bottom: none;/*線を消す*/
}
#contents #wbcnfNotice ul {
	list-style: square;
	padding-left: 40px;
	font-weight: bold;
}
#contents #wbcnfNotice li {
	margin-bottom: 15px;
}
#contents #wbcnfAgreement {
	margin-top: 40px;
	margin-left: 80px;
}
#contents #webcnf-btn2  {
	margin-top: 20px;
	margin-left: 20px;
}
