@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
img {
	width: 100%;
	vertical-align: bottom;
}
@font-face {
	font-family: 'ZenKakuGothicNew-Regular_subset';
	font-style: normal;
	src: url('../fonts/ZenKakuGothicNew-Regular_subset.ttf') format('truetype'), url('../fonts/ZenKakuGothicNew-Regular_subset.woff') format('woff'); 
}
body {
	font-family: 'ZenKakuGothicNew-Regular_subset', sans-serif;
}
a {
	text-decoration: none;
}
.all_wrap {
	font-size: 16px;
	color: #444;
}
.inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
header section h1 {
	width: 150px;
	align-items: center;
    display: flex;
	margin: 10px 0;
}
.title {
	text-align: center;
	background-color: #f4ad21;
	color: #fff;
	padding: 30px 5px;
}
.title span {
	display: block;
	font-size: 0.5625em;
}
h2 {
	margin-bottom: 20px;
}
h3 {
	margin: 100px 0 20px;
	font-size: 1.25em;
	border-bottom: 2px solid #004b8a;
	padding-bottom: 5px;
}
div h3:first-of-type{
	margin-top: 60px;
}
h4 {
	margin: 40px 0 10px;
	font-size: 1.0625em;
	/*border-bottom: 1px solid #004b8a;
	padding-bottom: 5px;*/
}
footer {
	padding: 10px 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
	border-top: solid 1px #444;
}
footer section {
	display: flex;
	justify-content: space-between;
}
footer a {
	color: #444444;
}
.management {
	font-size: 14px;
}
.copyright {
	font-size: 12px;
}

.text2 {
	margin-top: 1em;
}
span.red,strong.red{
	color: #e61b1b;
}


/*ナンバリング*/
aside nav ul {
	counter-reset: number 0;	/* number のカウンタを 0 にセット */
}
aside nav li::before {
	counter-increment: number 1;	/* number カウンタを増加 */
	content: "[ " counter(number) " ]";	/* 表示形式を指定 */
	top: 10px;
	left: 0;
    position: absolute;
}

@media screen and (max-width: 1199) {
	.inner {
		width: 100%;
	}
}

@media screen and (max-width: 478px) {
	header section h1 {
		width: 100px;
		margin: 7px 0;
	}
	.title {
		padding: 15px 5px;
		font-size: 24px;
	}
	h2 {
		font-size: 20px;
	}
	footer {
		margin: 7px auto;
	}

}