div.box{
        box-shadow: 0px 0px 10px #ffffff;
   -moz-box-shadow: 0px 0px 10px #ffffff;
-webkit-box-shadow: 0px 0px 10px #ffffff;

        border-radius: 10px;
   -moz-border-radius: 10px;
-webkit-border-radius: 10px;

	padding: 10px;
	background: #ffffff;
	text-align: center;
	color: #000000;
	width: 192px;
	height: 192px;
	margin: 18px;
	z-index: 99;
	float: left;
	position: relative;
	/*white-space: nowrap;*/
}
div.box_hover{
/*        box-shadow: 0px 0px 30px #ffffff;
   -moz-box-shadow: 0px 0px 30px #ffffff;
-webkit-box-shadow: 0px 0px 30px #ffffff;  hover時の動作はinclude/boxclick.jsに移行*/
	color: #000000;
	cursor: pointer;
	background: #ffcccc\9;
}
@media(max-width:767px){
	div.box{
		margin: 15px auto;
		width: 250px;
		height: 100px;
		float: none;
	}
}

.box_pic{
	position: relative;
	display: block;
	margin: 0px auto;
	width:  178px; /* 画像の横幅に合わせて記述 */
	height: 100px; /* 画像の高さに合わせて記述 */
	z-index: 101;
	overflow: hidden; /*切り取り*/
	float: none;
}
@media(max-width:767px){
	.box_pic{
		margin: 0;
		width:  98px; /* 画像の横幅に合わせて記述 */
		height: 98px; /* 画像の高さに合わせて記述 */
		float: left;
		overflow: hidden; /*切り取り*/
		margin-right: 5pt;
	}
}

div.box h1,div.box h2,div.box h3,div.box h4{
	margin: 0px;
	padding: 0px;
}

.box_pic:after {
	position: absolute;
	display: block;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	content: " ";
	z-index: 100;
        box-shadow: inset 0px 0px 5px 5px #ffffff;
   -moz-box-shadow: inset 0px 0px 5px 5px #ffffff;
-webkit-box-shadow: inset 0px 0px 5px 5px #ffffff;
}

@media(min-width:767px){
	.box_pic img{
		position: absolute;
		top: 0px;
		left: 0px;
	}
}
@media(max-width:767px){
	.box_pic img{
		height:98px;
	}
	.box_pic img.cutleft{
		position: absolute;
		top: 0px;
		left: -76px;
	}
	.box_pic img.cutright{
		position: absolute;
		top: 0px;
		left: 0px;
	}
	.box_pic img.cutcenter{
		position: absolute;
		top: 0px;
		left: -38px;
	}
}

p.box_none{
	text-indent:-9999px;
	height:0px;
	overflow:hidden;
}