@charset "utf-8";

.footer {
	background: #1A1311;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer .l-container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
}
.footer__copy {
	text-align: center;
	font-size: 14px;
}
.gototop {
    position: fixed;
    z-index: 1000;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: .8em;
    display: none;
    color: #fff;
    border: 1px solid #fff;
    background-color: rgba(0, 0, 0, .6);
    cursor: pointer;
}

/* =========================
	@media 768px
========================= */
@media screen and (max-width:768px) {
	.footer {
		padding-bottom: 64px;
	}
	.footer__copy {
		font-size: 10px;
	}
	.gototop {
		bottom: 65px;
	}
}