@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/*-----------------------------------

	footer

-----------------------------------*/
footer {
	position:relative;
	padding:50px 0;
	text-align:center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}
footer h1 {
  margin: 0 !important;
}
footer .ft_nav{
	padding:40px 0 10px 0;
}
footer .ft_nav ul {
	margin:0 auto;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
footer .ft_nav ul li {
   color: #666666;
    font-size: 12px;
	position:relative;
  line-height: 2;
}
footer .ft_nav ul li:not(:last-of-type) {
  margin-right: 22px;
  padding-right: 22px;
}
footer .ft_nav ul li:not(:last-of-type)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 1px;
    height: 70%;
    background: #666666;
}
footer small {
	color:#666666;
	font-size: 10px;
}
footer .ft_nav ul li a,
footer .ft_nav ul li span {
  color: #231815 !important;
}

@media screen and (max-width: 640px) {

	footer {
		padding:50px 0 100px 0;
	}
  footer .ft_nav ul {
    -webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  }
  footer .ft_nav ul li:not(:last-of-type) {
    margin-right: 0;
    padding-right:0;
    margin-bottom: 5px;
  }
  footer .ft_nav ul li:not(:last-of-type)::before {
      content: none;
  }

}

