@charset "utf-8";

#footer {
	display: flex;
	justify-content: space-between;
	padding: 20px 200px;
	margin-top: 50px;
	background-color: rgb(0,176,80);
}

.copyright {
	color: white;
}

.privacy-policy a {
	color: white;
}

.privacy-policy a:hover {
	color: gray;
}

/*---モバイル版--*/

@media ( max-width : 600px) {

	#footer {
		display: block;
		padding: 0px;
		position: relative;
		height: 60px;
	}

	.copyright {
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.privacy-policy {
		text-align: center;
	}
	

  }