@charset "UTF-8";

/* !company
---------------------------------------------------------- */
.dl_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	line-height: 1.6;
}
.dl_list dt {
	width: 25%;
	padding: 1em 0 1em 1.2em;
	border-bottom: 1px solid #eee;
	color: #fff;
	font-weight: 700;
	background: var(--blue);
}
.dl_list dd {
	width: 75%;
	padding: 1em 0 1em 1.2em;
	border-bottom: 1px solid #eee;
}
@media screen and (max-width: 1024px) {
	.dl_list dt {
	}
	.dl_list dd {
	}
}
@media screen and (max-width: 540px) {
	.dl_list {
	}
	.dl_list dt {
		width: 100%;
		border-bottom: none;
		padding: .5em 0 .5em 1em;
	}
	.dl_list dd {
		width: 100%;
		padding: .6em 0 2em 1em;
	}
}