html {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1.5;
	font-size: 62.5%;
}

*{
	margin: 0px;
	padding: 0px;
}

a{
	color : inherit;
	text-decoration: none;
	display : inline-block;
}

.main{
	width: 200px;margin: 0 auto;
}

.logo_top{
	display: none;
}

.wrap{
	margin-bottom: 20px;
}

.header{
	display : block;
	width : 100%;
	max-width: 1300px;
	padding-bottom: 10px;
	margin : 10px auto;
	border-bottom: 3px solid #eee;
}

.body{
	width : 100%;
	max-width: 1300px;
	margin : 0 auto;
}

.flex{
	display : flex;
	flex-wrap: wrap;
}

.flex .txt{
	width : calc( ( 100% - 30px ) / 4);
	margin-right : 10px;
}

.header.flex{
	justify-content: space-between;
}

.header p:first-child{
	font-size : 1.4rem;
}

.header.flex .txt{
	width : 10%;
}

.btn a {
	width: 100%;
  padding: 2% 1% 2% 10%;
	text-align: center;
}

#table_filter{
	margin-bottom: 10px;
}

.btnwrap.flex{
	width: 40%;
	text-align: right;
	justify-content: flex-end;
}

.txt{
	font-size : 1.4rem;
}

/*テーブル
********************************/
.table {
	width: 100%;
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
}
.table th {
	padding: 10px;
	background: #e9faf9;
	border: solid 1px #778ca3;
}
.table td {
	padding: 10px;
	border: solid 1px #778ca3;
}


/*ボタン
****************************/

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border: 1px solid #228bc8;
	box-sizing: border-box;
	color: #228bc8;
	text-align: left;
	position: relative;
	transition-duration: 0.2s;
}
.btn:hover {
	background: #228bc8;
	color: #fff;
}
.btn:before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 8px;
	border-color: transparent transparent transparent #228bc8;
	position: absolute;
	top: 50%;
	left: 6%;
	margin-top: -7px;
}
.btn:hover:before {
	border-color: transparent transparent transparent #fff;
}

.btnwrap .btn:last-child{
	margin-right : 0px;
}

div.btnwrap.flex span.txt{
	width: 27%;
}

div.btnwrap.flex a{
	padding : 4%;
}

#up.btn{
	margin-left : auto;
	padding : 10px;
}

#up{
	cursor : pointer;
}

.accident{
	width: 49%;
}

.pics{
	display: flex;
	width: 49%;
	margin-left: 1%;
	justify-content: flex-start;
	flex-wrap: wrap;
	word-wrap: break-word;
}


.pics .imgwrap{
	width: calc( (100% - 40px ) / 4);
	margin-bottom : 15px;
}


.img{
	width : 100%;
}

@media screen and (max-width: 600px) {
	.body{
		width:100%
	}
	
}