@charset "UTF-8";
/*
  /rakurakucloud/gwtg/asset/css/layout/l-pagetop.css
  上に戻るボタン（事例セクション以降で出現・右下固定）
*/
.l-pagetop {
  position: fixed;
  right: 24px;
  bottom: 200px;
  z-index: var(--z-index-pagetop);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
  @media screen and (max-width: 840px) {
    right: 16px;
    bottom: 80px;
    width: 44px;
    height: 44px;
  }
}
.l-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-pagetop:hover {
  background-color: var(--rcloud-primary);
}
.l-pagetop__icon {
  color: var(--rcloud-primary);
  transition: color 0.2s ease;
}
.l-pagetop:hover .l-pagetop__icon {
  color: var(--white);
}