/* CSS Document */




/*============================================================================

	footer

============================================================================*/
footer {
	position: relative;
	width:100%;
	background-color: #edeae3;
	padding: 80px 0 100px;
}
footer .inner {
	width: 90%;
	max-width: 1300px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width:640px) {
	footer {
		padding: 50px 0 50px;
	}
	footer .inner {
		display: block;
	}
	footer .inner h1 {
		width: 60%;
		margin: auto;
	}
}





/*------------------------------ nav ------------------------------*/
#footer_nav {
	width: calc( 100% - 381px - 8% );
	display: flex;
	margin-left: 8%;
}
@media screen and (max-width:640px) {
	#footer_nav {
		display: none;
	}
}

/*サイズ調整*/
#footer_nav ul:nth-of-type(1) { width: 35%;}
#footer_nav ul:nth-of-type(2) { width: 30%;}
#footer_nav ul:nth-of-type(3) { width: 20%;}
#footer_nav ul:nth-of-type(4) { width: 20%;}
#footer_nav ul:nth-of-type(5) { width: 20%;}

#footer_nav li {
	position:relative;
	margin-bottom: 8px;
}
#footer_nav li a {
	display: block;
	font-size: 15px;
	padding-left: 25px;
}
#footer_nav li::before {
	position: absolute; content: "";
	width: 4px; height: 4px;
	top: 50%; left: 5px; margin-top: -2px;
	background: #bd905e;
	border-radius: 100px;
}





/*------------------------------ コピーライト ------------------------------*/
.copy{
	position: absolute;
	width: 90%;
	max-width: 1300px;
	left: 0; right: 0; margin: auto;
	bottom: 95px;
	text-align: right;
}
.copy small{
	font-size:14px;
	letter-spacing: 1px;
	color: #7c7267;
	font-family: "EB Garamond", serif;
}
@media screen and (max-width:640px) {
	.copy{
		position: relative;
		bottom: auto;
		text-align: center;
		padding-top: 20px;
	}
	.copy small{
		font-size:11px;
	}
}












