/* footerのスタイルシート */

footer {
	position: sticky;
	top: 100vh;
	width: 100%;
	height: 200px;
    background-color: #2D2D2D;
	color: white;
	position: relative;
}

.footer_title {
	position: absolute;
	top: 10px;
	left: 10px;
}

.footer_title span {
	font-size: 30px;
    font-family: 'Mamelon-4-Hi-Regular';
}

.footer_title small {
    font-size: 18px;
    font-family: 'Mamelon-3-Hi-Regular';
    letter-spacing: 0.1em;
}

#copyright {
	position: absolute;
	left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
