/* CSS Document */




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

	footer

============================================================================*/
footer {
  	padding-top: 40px;
  	padding-bottom: 50px;
}
footer .inner {
  	width: 90%;
  	margin: auto;
  	display: flex;
  	justify-content: space-between;
  	align-items: stretch;
}
@media screen and (max-width: 640px) {
	footer {
	  	padding: 40px 0;
	}
	footer .inner {
	  	width: 100%;
	  	padding: 0 20px;
	  	box-sizing: border-box;
	  	flex-direction: column;
	  	align-items: center;
	  	text-align: center;
	}
}


/*------------------------------ info ------------------------------*/
.footer_info {
  	display: flex;
  	flex-direction: column;
  	justify-content: space-between;
}
.footer_address {
	margin-left: 5px;
}
.footer_address p {
	margin: 20px 0 7px;
  	font-size: 14px;
  	line-height: 1.6;
}
.footer_address a img:nth-of-type(1) {
	position: relative;
	top: -2px;
	margin-right: 15px;
}
@media screen and (max-width: 640px) {
	.footer_info {
	  	align-items: center;
	  	margin-bottom: 40px;
	}
	.footer_info figure img {
	  	width: 240px;
	}
	.footer_address {
	  	margin-left: 0;
	}
}


/*------------------------------ footer_nav ------------------------------*/
.footer_right {
  	display: flex;
  	flex-direction: column;
  	justify-content: space-between;
  	align-items: flex-end;
}

.footer_right ul {
  	display: flex;
  	gap: 20px;
	margin: 40px 0 0;
}
.footer_right ul li {
	margin: 0;
  	font-size: 14px;
}
@media screen and (max-width: 640px) {
	.footer_right {
	  	width: 100%;
	  	align-items: center;
	}
}


/*------------------------------ コピーライト ------------------------------*/
.copyright {
  	font-size: 11px;
	font-family: "Josefin Sans", sans-serif;
  	font-optical-sizing: auto;
}






