@charset "UTF-8";

/* !company
---------------------------------------------------------- */
.dl_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-top: 1px solid;
}
.dl_list dt {
	width: 17.6%;
	padding: 1em 0 1em 1.5em;
	border-bottom: 1px solid;
	font-weight: 700;
	background: #f3f3f3;
}
.dl_list dd {
	width: 82.4%;
	padding: 1em 0 1em 3em;
	border-bottom: 1px solid;
}
@media screen and (max-width: 540px) {
	.dl_list {
		border-top: none;
		border-bottom: 1px solid;
	}
	.dl_list dt {
		width: 100%;
		border-bottom: none;
		padding: .5em 0 .5em 1em;
	}
	.dl_list dd {
		width: 100%;
		padding: .6em 0 .8em 1em;
		border-bottom: none;
	}
}
.dl_list2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.dl_list2 dt {
	width: 12.3%;
	padding: .4em 0;
	font-weight: 700;
}
.dl_list2 dt::before {
	content: "■";
}
.dl_list2 dd {
	width: 87.7%;
	padding: .4em 0;
}
@media screen and (max-width: 540px) {
	.dl_list2 {
	}
	.dl_list2 dt {
		width: 100%;
		padding: .7em 0 0;
	}
	.dl_list2 dd {
		width: 100%;
		padding: 0 0 .7em;
	}
}
