@charset "utf-8";

.lead {
	margin: 0 0 80px;	
}
.contents {
	padding-bottom: 80px;	
}
.contents h4 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #0B7DD1;
	margin: 40px 0 20px;
}
.contents ul {
	display: -webkit-flex;
	display: flex;
	list-style: none;
}
.contents li  {
	margin-right: 40px;	
}

.contents li a {
	color: #333;
	text-decoration: none;
	padding-left: 30px;
	position: relative;
}
.contents li a:hover {
	color: #0B7DD1;
	text-decoration: underline;;
}
.contents li a:before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #0B7DD1;
	border-right: 2px solid #0B7DD1;
	transform: rotate(45deg);
	position: absolute;
	left: 5px;
	top: calc(50% - 5px);
}

@media(max-width: 767px) {
.contents h4 {
	font-size: 18px;
}
.contents ul {
	display: block;
}
.contents li  {
	margin: 0 0 10px;
}
}