@charset "utf-8";
/* CSS Document */

/*/////////////////////////////////////////////////////////
file name: company.css
description: 会社案内専用スタイルシート

1.レイアウト
2.スマートフォン縦横
3.スマートフォン横

///////////////////////////////////////////////////////// */

dl.listCompany {
	border-bottom: 1px dotted black;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

dl.listCompany dt {
	float: left;
	width: 200px;
	font-weight: bold;
	line-height: 1.4;
}

dl.listCompany dd {
	padding-left: 210px;
	line-height: 1.4;
}



/* ===========  2.667px以下スマホ縦横 =========== */
@media screen and (max-width: 667px) {

dl.listCompany dt {
	float: none;
	width: 100%;
}

dl.listCompany dd {
	padding-left: 0;
	margin-top: 10px;
}

}


/* ===========  3.スマホ横 =========== */
@media only screen and (max-device-width:667px) and (orientation:landscape) {

dl.listCompany dt {
	float: left;
	width: 30%;
}

dl.listCompany dd {
	padding-left: 32%;
	margin-top: 0;
}

}