.cgv-footer {
  border-top: 1px solid #dedede;
  background: #fff;
}

.cgv-footer__inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0;
}

.cgv-footer__inner p {
  margin: 0;
  font-size: 0.88rem;
  text-align: left;
}

.cgv-back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid #000;
  border-radius: 999px;
  color: #000;
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 1;
}

.cgv-back-to-top:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 920px) {
  .cgv-footer__inner {
    min-height: 78px;
    gap: 0.6rem;
    padding: 0.55rem 0;
  }

  .cgv-footer__inner p {
    font-size: 0.82rem;
  }

  .cgv-back-to-top {
    width: 1.95rem;
    height: 1.95rem;
    font-size: 0.95rem;
  }
}

