@charset "utf-8";
/* CSS Document */

body {
	font-family: sans-serif;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	color: #313131;
}

img {
	width: 100%;
}

header {
	background: #88bf3a;
	display: flex;
	justify-content: space-between;
	padding: 1rem 3rem;
	align-items: center;
}

header h1 {
	width: 50%;
	max-width: 350px;
}

.bl_btn a {
	color: #d4145a;
	display: block;
	width: fit-content;
	background-color: #fff;
	padding: 1em;
	font-weight: bold;
	border-radius: 4rem;
	text-decoration: none;
}

main {
	display: flex;
	flex-direction: column-reverse;
	padding-bottom: 10rem;
}

main dl {
	width: 90%;
	max-width: 800px;
	margin: 3rem auto;
	display: flex;
	flex-wrap: wrap;
}

main dt {
	width: 30%;
	border-bottom: solid 1px #cccccc;
	padding: 1rem;
	box-sizing: border-box;
}

main dd {
	width: 70%;
	border-bottom: solid 1px #cccccc;
	padding: 1rem;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	header {
		padding: 1rem;
	}
	.bl_btn a {
		padding: 0.5em 0.75em;
	}
	main {
		padding-bottom: 3rem;
	}
}
