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


/* トピックス */
section .dlarea{
	margin:50px 0;
}
section dl{
	display:table;
	width:95%;
	margin:0 auto 20px;
}

section dl dt{
	display:table-cell;
	width:30%;
	background-color:#E7E7E7;
	border-bottom:3px solid #CCC;
	padding:10px;
}
section dl dd{
	width:70%;
	display:table-cell;
	padding:10px;
	border-bottom:1px solid#E7E7E7;
}


@media print, screen and (min-width:900px) {
/*-----------------PC---------------------------------*/

}
@media only screen and (min-width:600px) and (max-width:899px) {
/*--------------タブレット----------------------------*/
section dl{
	width:100%;
}
}
@media only screen and (max-width:599px) {
/*---------------スマホ-------------------------------*/
section dl{
	display:block;
	width:95%;
	margin:0 auto 20px;
}

section dl dt{
	display:block;
	width:100%;
	background-color:#E7E7E7;
	border-bottom:1px dotted #CCC;
	padding:10px;
}
section dl dd{
	width:100%;
	display:block;
	padding:10px;
	border-bottom:1px solid #CCC;
}

}