/* paddingとborderの幅を要素の幅と高さに含める */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}
body {
	font-size:16px;
	margin:0;
	padding:0;
}
/*header {
}*/
header .logo {
	height:100px;
	border-bottom:10px solid #1B5890;
}
header .logo img {
	display:inline-block;
	margin-left:20px;
	position:relative;
	top:10px;
}
header .title {
	text-align:center;
	border-bottom:8px solid #1B5890;
	font-weight:bold;
	padding:10px 0;
	margin:0 10px;
}
header .title .main {
	font-size:24px;
}
header .title .main span {
	display:inline-block;
}
header .title .sub {
	font-size:22px;
}
.container {
	text-align:center;
	margin:0 10px 100px 10px;
}
.container .message {
	font-weight:bold;
	padding:20px 15px;
	font-size:25px;
}
.container .link a {
	font-weight:bold;
	font-size:18px;
}
.container .message .date {
	color:#F00;
}
footer .space {
	height:100px;
	background: #1B5890;
}
footer .copyright {
	text-align:center;
	padding:5px 0 20px 0;
}

.type span {
	display:inline-block;
}

.date span {
	display:inline-block;
}

.container .notice {
	padding:10px 0;
	font-size:18px;
}
.notice span {
	display:inline-block;
}

@media only screen and (min-width: 768px) {
	header .title,
	header .comment {
		width:80%;
		margin:0 auto;
	}
	.container {
		width:80%;
		margin:0 auto 100px auto;
	}
	header .title .main {
		font-size:32px;
	}
	header .title .sub {
		font-size:30px;
	}
	.container .message {
		font-size:36px;
	}

}