/**
*
* お知らせ数
*
*/
/*
.badge {
  position: relative;
  top: -40px;
  right: -0px;
  padding: 2px 5px;
  border-radius: 50%;
  background: red;
  color: white;
  font-size: 0.5em;
}
*/

.notification {
	background-color: #555;
	color: white;
	text-decoration: none;
	/*padding: 15px 26px;*/
	position: relative;
	display: inline-block;
	border-radius: 2px;
}

.notification:hover {
	background: red;
}

.notification .badge {
	position: absolute;
	top: -4;
	right: -7;
	padding: 2px 5px 2px 5px;
	border-radius: 50%;
	background-color: red;
	color: white;
	font-size: 0.6em;
}
.notice-panel {
	display: none;
}
.notice-content{
	background-color: #e7f3fe;
	border-left: 14px solid #2196F3;
	margin: 5px 2px 5px 3px;
	padding: 4px 10px 4px 10px;
	box-shadow: 0 8px 8px 0 rgba(0,0,0,0.2);
	border-radius: 5px;
}
.notice-content h4 {
	border-bottom: solid 3px #87CEFA;
}
.notice-content p {
	color: #266;
	font-size: 0.9em;
}