@charset "UTF-8";
/* CSS Document */

/*----------------------------------------*/
/*  フッター固定メニュー             　　 */
/*----------------------------------------*/

.fixbtn {
    position: fixed;
    bottom: 0;
    left: 0;
	z-index: 1000;
	width: 100%;
}

.fixbtn ul {
	display: table;
	width: 100%;
	border-top: 1px solid #FFF;
	}

.fixbtn ul li {
	display: table-cell;
	width: 25%;
	border-right: 1px solid #FFF;
	text-align: center;
	vertical-align: middle;
	}

.fixbtn ul li:nth-child(1) { background-color: #578547; } /*左から1番目*/
.fixbtn ul li:nth-child(2) { background-color: #578547; } /*左から2番目*/
.fixbtn ul li:nth-child(3) { background-color: #578547; } /*左から3番目*/
.fixbtn ul li:nth-child(4) { background-color: #FEB868; } /*左から4番目*/

.fixbtn ul li a {
	display: block;
	padding: 8px 0;
	line-height: 1em;
	}
	
.fixbtn ul li a,
.fixbtn ul li a:hover,
.fixbtn ul li a:visited {
	color: #ffffff !IMPORTANT; /*ボタンのテキスト色*/
	font-weight: normal !IMPORTANT;
	text-decoration: none !IMPORTANT;
}

.fixbtn ul li a:hover {
	text-decoration: none;
	}

.fixbtn ul li a img {
	height: 20px;
	}

.fixbtn ul li a p {
	margin-top: 6px;
	font-size: 1.3rem;
	}



/*----------------------------------------*/
/*  ページトップボタン             　　　 */
/*----------------------------------------*/

.pagetop {
	display: none;
	position: fixed;
    bottom: 5%;
    right: 30px;
	z-index:99;
}
.pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	background: #EA5432 url(../../img/common/toptop.png)  no-repeat center center;
	border-radius: 50px;
	text-indent:-9999px;
	font-size: 24px;
	text-decoration: none;
	line-height: 50px;
}

