footer{
	width: 100%;
	text-align: center;
	padding: 35px;
	background-image: linear-gradient(to right, #5c4b0c, #5c2f40, #174355);
}
footer .links{
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

footer .links a{
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	transition: 0.1s;
}
footer .links a:hover{
	text-decoration: underline;
}
footer .attention{
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	margin: 0px;
    display: inline-block;
}
footer .copyright{
	font-size: 16px;
	color: #ccc;
}

/*---------rwd------------*/

@media only screen and (min-width: 750px) and (max-width: 969px) {
    footer{
        padding: 25px;
    }
    footer .links a{
	    font-size: 18px;
    }
}

@media only screen and (max-width: 749px) {
    footer{
        padding: 15px 5px;
    }
    footer .links{
	    flex-wrap: wrap;
        margin-bottom: 10px;
    }
    footer .links a{
	    font-size: 12px;
	    padding: 5px;
        margin-right: 20px;
        width: 25%;
    }
    footer .links a:nth-last-of-type(3n+1){
        margin-right: 0;
    }
    footer .attention{
	    font-size: 10px;
        line-height: 12px;
    }
    footer .copyright{
	    font-size: 10px;
    }
}