/*infoエリアをはじめは非表示*/
#info{
	display: none;
}

.modal-open{
  text-decoration: none;
  text-align: center;
  display: block;
  background-color: #1B1B1B;
  padding: 10px 0;
  color: #fff;
}

.info_txt{
  margin-top: 10px;
  line-height: 20px;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container{
    max-width: 600px;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}