@charset "utf-8";

/*--------------------------------------
	default
--------------------------------------*/
dl {
	display: flex;
	flex-wrap: wrap;
	min-height: 1px;
	margin-bottom: 15px;
	border-bottom: 1px #ccc dotted;
	background-color: #edf0f8;
}
dl:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

dl dt {
	display: inline;
	float: left;
	clear: left;
	width: 90px;
	padding: 7px 15px;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-top: 1px #ccc dotted;
}

dl dd {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-top: 1px solid #ddd;
	width: 1035px;
	/*	margin-left: 120px;*/
	padding: 7px 15px;
	border-top: 1px #ccc dotted;
	background-color: #fff;
}

/*  dt.right*/
dl.dt_right dt {
	padding-right: 10px;
	padding-left: 0;
	text-align: right;
}

/*--------------------------------------
	medium
--------------------------------------*/
dl.medium dt {
	width: 150px;
}

dl.medium dd {
	width: 975px;
}

/*--------------------------------------
	long
--------------------------------------*/
dl.long dt {
	width: 270px;
}

dl.long dd {
	width: 855px;
}

