


/* --------- Button Product ---------------*/

/* 通常時 */
img.button_product{
	opacity:0.3;
}

img.button_product:hover{
 
	/* 透明度を上げることで、画像の色を薄く見せる。*/
	opacity:1.0;
 
	/* リンクをホバーしたときのカーソルにする。*/
	cursor: pointer;
}
 
/* twitter画像をクリックした瞬間 */
img.button_product:active{
 
	/* 要素を若干下に下げることで、押した感じを出す。*/
 
	/* 今いる位置から相対的に3px下に配置する。*/
	position: relative;
	top: 1px;
 
}

/* --------- Button Contact ---------------*/

/* 通常時 */
img.button_contact{
	opacity:1.0;
}

img.button_contact:hover{
 
	/* 透明度を上げることで、画像の色を薄く見せる。*/
	opacity:1.0;
 
	/* リンクをホバーしたときのカーソルにする。*/
	cursor: pointer;
}
 
/* twitter画像をクリックした瞬間 */
img.button_contact:active{
 
	/* 要素を若干下に下げることで、押した感じを出す。*/
 
	/* 今いる位置から相対的に3px下に配置する。*/
	position: relative;
	top: 1px;
 
}



