@charset "UTF-8";

/* !company
---------------------------------------------------------- */
.dl_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.dl_list dt {
	width: 13%;
	padding: 1.2em 0;
	border-bottom: 1px solid #b6c7eb;
	color: var(--blue);
	font-weight: 700;
}
.dl_list dd {
	width: 87%;
	padding: 1.2em 0;
	border-bottom: 1px solid #b6c7eb;
}
.dl_list._wide dt {
	width: 32%;
}
.dl_list._wide dd {
	width: 68%;
}
.dl_list._wide2 dt {
	width: 34%;
}
.dl_list._wide2 dd {
	width: 66%;
}
@media screen and (max-width: 1024px) {
	.dl_list dt {
		width: 18%;
	}
	.dl_list dd {
		width: 82%;
	}
	.dl_list._wide dt {
		width: 35%;
	}
	.dl_list._wide dd {
		width: 65%;
	}
}
@media screen and (max-width: 540px) {
	.dl_list dt {
		width: 100%;
		border-bottom: none;
		padding: 1.3em 0 .3em;
	}
	.dl_list dd {
		width: 100%;
		padding: 0 0 1.3em;
	}
	.dl_list._wide dt {
		width: 100%;
	}
	.dl_list._wide dd {
		width: 100%;
	}
	.dl_list._wide2 dt {
		width: 60%;
		padding: 1.5em 0 .7em;
		border-bottom: 1px solid #b6c7eb;
	}
	.dl_list._wide2 dd {
		width: 40%;
		padding: 1.5em 0 .7em;
	}
}
