@charset "UTF-8";
/* CSS Document */

#footer {
	background: #FFFFFF;
	padding: 40px 0;
/*	border-top: 1px solid #00469c;*/
}

#footer #footer-logo-list {
  display: flex;
  display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;	
	-webkit-align-items: center;	
}

#footer #footer-logo-list > li {
	width: 100px;
}

#footer #footer-logo-list > li img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

#footer #footer-nav {
	padding: 20px 0 40px;
}

#footer #footer-nav-link {
  display: flex;
  display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;	
	-webkit-align-items: center;	
}

#footer #footer-nav-link > li {
	position: relative;
	padding: 0 1em;
}

#footer #footer-nav-link > li::before {
	content: "";
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #A5A5A5;
}

#footer #footer-nav-link > li:nth-child(1)::before {
	content: none;
}

#footer #footer-nav-link > li > a {
	color: #A5A5A5;
	text-decoration: none;
	font-size: 14px;
}

#footer #footer-copyright {
	text-align: center;
	font-size: 12px;
	color: #333;
}

#footer #footer-mobile-logo {
	display: none;
}

#footer #footer-mobile-logo {
	width: 200px;
	margin: 0 auto;
}

#footer #footer-mobile-logo > a {
	display: block;
}


@media screen and (max-width: 767px) {
	#footer #footer-logo-list {
		flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
		gap: 15px 0;
	}
	#footer #footer-logo-list > li {
		width: 25%;
	}
	#footer #footer-nav {
		padding: 40px 6%;
	}
	#footer #footer-nav-link {
		flex-direction: column;
		-webkit-flex-direction: column;
		align-items: flex-start;
		-webkit-align-items: flex-start;
		gap: 15px;
	}
	#footer #footer-nav-link > li {
		width: 100%;
		border-bottom: 1px solid #A5A5A5;
		padding: 0 0 10px 0;
	}
	#footer #footer-nav-link > li > a {
		display: block;
    text-align: left;
	}
	#footer #footer-nav-link > li::before {
		content: none;
	}
	#footer #footer-mobile-logo {
		display: block;
	}
	#footer #footer-copyright {
		padding: 0 6% 20px;
	}
}