
/*---------- home ----------*/

#home .list{
	float: left;
	margin: 0px 15px 15px 0px;
	padding: 3px;
	border: 1px solid #CCC;
	height: 250px;
	width: 230px;
	display: block; /* ブロック化 */
}
#home .list h.{
	margin: 0px;
	padding: 0px;
}
#home .name{
	display: block; /* ブロック化 */
	height: 40px;
	margin: 0px;
}
#home .list .com{
	height: 30px;
	text-align: justify;
	font-size: 14px;
}

/*---------- 画像のトリミング http://phpspot.org/blog/archives/2008/02/cssoverflow.html ----------*/

#home div.clipwrap {
	height: 120px;
	margin-top: 10px;
}

#home p.clip {
	position: relative;
	top: 0;
	left: 0;
}

#home p.clip img {
    position: absolute;
    top: 0;
    left: 0;
    clip: rect(0px 170px 120px 0px);
}
 
#home p.clip a img {

}

#home p.clip a:hover {
    border: none;
}
 
#home p.clip a:hover img {
    clip: rect(0 240px 180px 0);
}

