/*
// 全体
*/

body, h1, h3, h3, table, th, td, ul, li, div, p, input, textarea {
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: "メイリオ", Meiryo,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#header {
	width: 100%;
	margin: 0 auto;
	background:  linear-gradient( 110deg, #004694, #D11528 );
}

#header h1 {
	padding: 15px 0 8px;
	margin: 0 20px;
	font-size: 35px;
	color: #FFF;
}

#content {
	padding: 20px;
}

#content h2 {
	color: #000;
	font-size: 20px;
	font-weight: bold;
	border-bottom: solid 7px #D11528;
	position: relative;
}
#content h2:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 7px #004694;
	bottom: -7px;
	width: 30%;
}

#content h3 {
	color: #000;
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 5px;
}


/*
// グリッド
*/

.grid {
	display: grid;
	gap: 15px 15px;
	grid-template-columns: repeat( auto-fit, minmax( 300px, 1fr ));
	margin: 0 0 30px;
}
.item {
	border-radius: 15px;
	border: 1px solid #666;
	padding: 18px;
	text-align: center;
}
.webimage img {
	border: 1px solid #CCC;
	max-width: 100%;
	height: auto;
	margin: 0 0 10px;
}
.text {
	text-align: left;
	padding: 10px 0 0;
}
.link {
	margin: 10px 0 0;
}
.link a.red {
	display: block;
	text-decoration: none;
	color: #D11528;
	font-weight: bold;
	border: 1px solid #D11528;
	margin: 0 0 10px;
	padding: 7px;
}
.link a.blue {
	display: block;
	text-decoration: none;
	color: #004694;
	font-weight: bold;
	border: 1px solid #004694;
	margin: 0 0 10px;
	padding: 7px;
}
.link a.green {
	display: block;
	text-decoration: none;
	color: #009446;
	font-weight: bold;
	border: 1px solid #009446;
	padding: 7px;
}
.link a.gray {
	display: block;
	text-decoration: none;
	color: #666;
	font-weight: bold;
	border: 1px solid #666;
	margin: 0 0 10px;
	padding: 7px;
}
