#event ul li{
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo UI, "MS PGothic", "Osaka", Arial, sans-serif;
	color: #333333;
	width: 328px;
	font-style: italic;
	font-variant: normal;
	line-height: 172%;
	font-size: 87%;
	border-bottom: 1px solid #bdc3c7;
}

.eo {
	font-weight: bold;
	color: #99CC00;
	
	}

.year {
	border-radius: 9px;
	width: 396px;
	border: 1px solid #bdc3c7;
	margin-top: 8px;
	background-color: #ecf0f1;
}

.year h2{
	font-style: italic;
	font-size: 21px;
	margin-left: 28px;
	margin-bottom: -17px;
	color: #e67e22;
	text-shadow: 1px 0px 3px #95a5a6;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#event ul li a {
text-decoration: none;
}

/* Outline Inward */
.outline-inward {
  display: inline-block;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.outline-inward:before {
	pointer-events: none;
	content: '';
	position: absolute;
	border: #c0392b solid 1px;
	top: -26px;
	right: -26px;
	bottom: -26px;
	left: -26px;
	opacity: 0;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-property: top, right, bottom, left;
	transition-property: top, right, bottom, left;
	border-radius: 5px;
}
.outline-inward:hover:before, .outline-inward:focus:before, .outline-inward:active:before {
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  opacity: 0.8;
}