.message {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	transform-origin: 50% 50%;
	width: 100%;
	max-width: 960px;
	transition: transform 0.25s;
	line-height: 1.5em;
}
.message.too_big {
	position: absolute;
	top: 0;
	margin: 16px 0;
	left: 50%;
	transform: translateX(-50%) scale(0);
	transform-origin: 50% 480px;
}
.message.show {
	transform: translate(-50%, -50%) scale(1);
}
.message.too_big.show {
	transform: translateX(-50%) scale(1);
}
.message p {
	margin: 0 0 1.5em;
}
.message p:last-child {
	margin: 0;
}
.message > div {
	margin: 8px;
	padding: 16px;
	background: rgba(0, 59, 252, 0.5);
	border: 2px solid white;
}
.message .title {
	font-size: 2em;
	margin: 0.5em 0 1em;
}
.message .subtitle {
	font-size: 1.4em;
}
.message .center {
	text-align: center;
}
.message a {
	text-decoration: none;
	color: white;
}
.message a.choice {
	font-size: 2em;
	display: inline-block;
	line-height: 3em;
	background: url(../img/head_outline.png) 50% 50%/auto 100% no-repeat;
}
.message a.back {
	font-size: 1.5em;
	position: absolute;
	top: 1.5em;
	left: 1.5em;
}
.message .shc_year {
	margin: 1em 0;
	width: 33%;
	float: left;
}
.message .shc_year3 {
	margin: 1em 0;
	width: 33%;
	float: left;
}
.message .shc_year4 {
	margin: 1em 0;
	width: 25%;
	float: left;
}
.message ul li {
	margin: 0 0 1em;
}
.message ul li.notfound {
	opacity: 0.5;
	cursor: not-allowed;
}