/* ----- サムネイル表示 ----- */
img {
     border: none;
}
p.zoom {
     position: relative;
     width: 157px;
     height: 250px;
     margin-right:20px;　
}
p.zoom a,
p.zoom a:visited {
     position: absolute;
     display: block;
     width: 157px;
     height: 250px;
}
p.zoom a img {
     width: 157px;
     height: 250px;
}
 
/* ----- マウスオーバーによる拡大表示----- */
p.zoom a:hover {
     position: absolute;
     width: 459px;
     height: 650px;
}
p.zoom a:hover img {
     position: absolute;
     top: 0;
     left: 0;
     width: 459px;
     height: 650px;
}


img.grow {
     width: 157px;
     height: 250px;
     margin-right:20px;
	-webkit-transition:0.2s ease-in-out;
	-moz-transition:0.2s ease-in-out;
	-ms-transition:0.2s ease-in-out;
	-o-transition:0.2s ease-in-out;
	transition:0.2s ease-in-out;
	    max-width: 100%;
    height: auto;
}

img.grow:hover {
	-webkit-transform:scale(1.2,1.2);
	-moz-transform:scale(1.2,1.2);
	-ms-transform:scale(1.2,1.2);
	-o-transform:scale(1.2,1.2);
	transform:scale(3.0,3.0);
}