/* CSS Document */




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

	footer

============================================================================*/
footer {
	width:100%;
	padding: 80px 0 60px;
	background-color: #e0ebef;
	border-bottom: 5px solid #0f3d70;
}
footer .inner {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width:940px) {
	footer {
		padding: 50px 0 40px;
		text-align: center;
	}
	footer .inner {
		display: block;
	}
}



/*------------------------------ 左側 ------------------------------*/
footer dl dt {
	margin-bottom: 10px;
	font-weight: 600;
}
footer dl dd {
	font-size: 14px;
	margin-bottom: 10px;
	line-height: 1.8;
}
@media screen and (max-width:940px) {
}



/*------------------------------ 右側 ------------------------------*/
.footer_right {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-content: flex-end;
}
.footer_btn {
	display: block;
	width: 100%;
	margin-bottom: 30px;
}
.footer_btn a {
	margin: 0;
	float: right;
}
.footer_btn a img {
	position: relative;
	margin-right: 10px;
	top: -7px;
}
.copy{
	display: block;
	margin-bottom: 10px;
}
.copy small{
	color: #0f3d70;
	font-size:13px;
	font-family: "Josefin Sans", sans-serif;
	font-optical-sizing: auto;
}
@media screen and (max-width:940px) {
	.footer_right {
		display: block;
	}
	.footer_btn {
		margin: 20px auto 30px;
	}
	.footer_btn a {
		margin: auto;
		float: none;
	}
	.copy small{
		font-size:10px;
	}
}





