@charset "utf-8";
.copyright {
  font-size: 1.2rem;
  text-align: center;
  padding: 1em;
  margin: 0;
}

.scrollButton {
    position: fixed;
    right: 16px;
    background: #000;
    color: #fff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    border-radius: 50%;
    line-height: 1;
    z-index: 500;
}
.scrollButton::before {
  content: "";
  border-style: solid;
  border-width: 0 10px 18px 10px;
  border-color: transparent transparent #FFF transparent;
  margin-bottom:4px;
}
.scrollButton:hover {opacity:1;}
@media screen and (max-width:650px){
	.scrollButton {
		width: 32px;
		height: 32px;
		right: 8px;
		bottom: 24px;
	}
	.scrollButton::before {
		border-width:  0 6px 10px 6px;
		margin-bottom: 2px;
	}
}

