/* Topボタン */
#MOVE_TOP_BTN {
	position: fixed;
	width: 60px;
	right: 3%;
	bottom: 50px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 4px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	padding: 5px;
	transition: .3s;
	z-index: 1000;
}

#MOVE_TOP_BTN:hover {
	background: rgba(0, 0, 0, 0.5);
}

#MOVE_TOP_BTN > span {
	display: block;
}


/*===============================
  Footer
================================*/
#footer {
  padding: 18px;
  font-size: 16.5px;
  line-height: 1.6;
  padding: 0 0 7px;
}

footer {
	display: block;
	background: #223343;
	color: #93a3af;
}


#footer .footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: 1900px;
  margin: 0 auto;
}

#footer .footer-inner,
#footer .footer-address,
#footer .footer-nav ul {
	display: flex;
	align-items: flex-end;
	font-style: normal;
}

#footer .footer-inner .logo-img{
	justify-content: center;
	margin-bottom: -3px;
}

#footer .logo-img a {
	display: flex;
	font-size: .9em;
	align-items: center;
	margin: -25px 15px 3px 0;
}

#footer .logo-img img {
	display: block;
	width: 76px;
}

#footer .subname{
	font-size:.9em;
    margin: 0 20px 0 0;
    padding-top: 10px;
	align-items: center;
}

/* htmlpage look */
#footer .footer-address .addr {
	font-size: .85em;
	margin: 0 15px 1px 0;
}

.footer-company address {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: .8em;
	margin-right: 80px;
}


#footer .footer-nav li {
	/*font-size: .9em;*/
	font-size: .8em;
	padding: 0 20px;
	margin-bottom: 0;
}

#footer .footer-nav li:not(:last-child) {
	border-right: 1px solid currentColor;
}

#footer .footer-copy {
	/*font-size: .9em;*/
	font-size: .8em;
	margin-left: 20px;
	font-family: neue-haas-grotesk-display, sans-serif;
}



@media (max-width: 1400px) {
	#footer {
		text-align: center;
	  padding: 20px;
	}

	#footer .footer-wrap {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	#footer .logo-img a {
		margin: 0 30px 0 0;
	}

	#footer .footer-inner.bottom {
		display: block;
		margin-top: 15px;
	}

	#footer .footer-nav {
		margin-bottom: 10px;
	}

	#footer .footer-copy {
		margin: 0;
	}
}

@media (max-width: 850px) {
	#footer {
		position: sticky;/* 粘着位置指定要素 */
		top: 100vh;
		width: 100%;
		font-size: .8em;
		padding: 20px 15px 15px;
	}

	#footer .footer-inner {
		align-items: center;
		display: initial;
	}

	#footer .footer-inner .logo-img{
		margin-bottom: 1em;
	}	

/* htmlpage.css--look */
	#footer .logo-img a {
		margin-right: calc(5px + 1vw);/* logo & txt space width */
	}

	#footer .logo-img img {
		width: 83px;
	}

	#footer .subname{
		margin-right: 0;
		font-size: 1.1em;
	}

	#footer .footer-nav {
		display:  none;
	}

	#footer .footer-address {
		display: block;
		/* text-align: left; */
		margin-left: 10px;
		font-size: 1.22em;
	}

	#footer .footer-copy {
		font-size: 1.0em;
	}
}