@charset "UTF-8";

/*-----------------------------------------------------------
	フッター
-----------------------------------------------------------*/
footer{
	/*border-top:1px solid #ccc;*/
	padding:40px;
	/*background: linear-gradient(30deg, rgba(0,125,75,.8), rgba(0,125,75,0) 65%),
            linear-gradient(150deg, rgba(0,255,255,.8), rgba(0,255,255,0) 65%),
            linear-gradient(270deg, rgba(0,0,255,.8), rgba(0,0,255,0) 65%);*/
}

footer .fNav{
	display: flex;
	justify-content: space-evenly;
	margin:15px 0;
}

footer .fNav ul{
	display: flex;
}
footer .fNav ul li{
	font-size: 80%;	
	position: relative;
	display: flex;
}
footer .fNav ul li a{
	padding: 0 16px;
}
footer .fNav ul li a:hover{
	text-decoration: underline;

}
footer .fNav ul li:not(:last-child) a::after{
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 14px;
    border-right: 1px solid #999;
}


footer .copyright{
	font-size:70%;
	text-align:center;
}



