@charset "UTF-8";
.footer__copyright {
  text-align: center;
  font-size: var(--f14-size);
	 padding: 20px;
}

/* ページトップへ戻る */
.footer__pagetop {
  display: none;
  position: fixed;
  width: 50px;
  height: 50px;
  right: 18px;
  bottom: 18px;
  background: var(--color-orange);
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

.footer__pagetop::before {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  transform: translate(-50%,-50%) rotate(-45deg);
}
