@charset "UTF-8";



/* ----------マウスオーバーアニメーション---------- */

/* ホームボタン */

.home_icon {
	display: inline-block;
	transition: all 0.3s;
	height: 40px;
}

.home_icon:hover {
	transform: translate(0,2px);
}

/* トップに戻るボタン */

.page_top {
	display: inline-block;
	transition: all 0.3s;
	height: 40px;
}

.page_top:hover {
	transform: translate(0,2px);
}

/* フッター */

.footer_up_body a {
	display: inline-block;
	transition: all 0.3s;
}

.footer_up_body a:hover {
	transform: translate(0,2px);
}



/* ウィンドウ幅が0?479pxの場合に適用するCSS */
@media screen and ( max-width:479px )
{



}