/* div:nth-of-type(4) h1 = .Leader h1 */
/* div:nth-of-type(5) = .Main */

div:nth-of-type(4) h1 {
	padding: 40px 50px 60px;
	width: auto;
	color: #ffffff;
	background-color: #219ebc;
	background: url(img/header_background.png) no-repeat 0 0 / cover;
	background-position: right -1px bottom -1px;
	background-size: 400px;
	background-color: #219ebc;
	height: 90px;
}

div:nth-of-type(5) {
	width: auto;
	padding: 38px 50px 10px;
	margin: 0 auto;
}

h2+p {
	width: 80%;
	margin: 0 0 70px 0;
	padding: 20px 30px;
	white-space: nowrap;
	border-top: 2px solid #D1D0B8;
	border-bottom: 2px solid #D1D0B8;
}

div:nth-of-type(5) a {
	display: block;
	font-weight: bold;
}

table {
	width: 80%;
}
tr:nth-child(even) {
	background-color: #efefef;
}
th {
	border-bottom: 2px solid #bbbbbb;
}
td {
	padding: 0;
	border: none;
}
td:first-of-type, th:first-of-type {
	width: 20%;
	font-weight: bold;
	padding: 0 10px;
	white-space: nowrap;
}


/* PCで狭い場合 */
@media screen and (max-width: 900px) {

	div:nth-of-type(4) h1, div:nth-of-type(5) {
		margin: 0;
		padding-left: 20px;
		padding-right: 20px;
	}

}



/* スマホ版 */
@media screen and (max-width: 760px) {

	div:nth-of-type(4) {
		background-size: 240px;
	}

	div:nth-of-type(4) h1 {
		padding: 30px 20px 40px;
	}

	div:nth-of-type(5) {
		padding: 30px 30px 10px;
	}
}



