/*マウスオーバー時にリンクを凹ませる*/
a:hover{ position:relative;top:3px ;left:3px; }

/*マウスオーバー時にリンクを半透明に光らせる*/
a:hover img{
opacity:0.5;
filter:alpha(opacity=50);
-ms-filter: “alpha( opacity=50 )”;
}

/************************************
** フッターエリア色変更
************************************/
.l-footer .bottomFooter {
     background: #60bcac; /* フッターエリアの背景色 */
}
.bottomFooter__list li {
     color: #000000; /* フッターメニューの文字色 */
}
.bottomFooter__list li a:hover{
     border-color: #000000; /* フッターメニューホバー時の下線色 */
}
.bottomFooter__copyright {
     color: #000000; /* コピーライトの文字色 */
}
.bottomFooter__link{
     color: #000000; /* コピーライトリンクの文字色 */
}