
.page-copyright {
  margin-top: 160px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.copyright-content-wrapper {
  width: 100%;
  max-width: 1312px;
  padding: 0 16px;
  margin-bottom: 60px;
  box-sizing: border-box;
}

.copyright-content-wrapper h1 {
  width: 100%;
  text-align: center;
  font-family: 'Noto Serif JP', 'Noto Serif', serif;
  font-size: 32px;
  line-height: 64px;
}

.copyright-content-wrapper pre {
  margin-top: 100px;
  width: 100%;
  white-space: pre-wrap;
  font-family: 'Noto Serif JP', 'Noto Serif', serif;
  font-size: 18px;
  line-height: 27px;
}

@media only screen and (max-width: 960px) {
  .page-copyright {
    margin-top: 80px;
  }
  .copyright-content-wrapper h1 {
    font-size: clamp(18px, min(32px, var(--aspect-base) * 32) ,32px);
    line-height: clamp(27px, min(64px, var(--aspect-base) * 64) ,64px);
  }
  .copyright-content-wrapper pre {
    margin-top: 40px;
    font-size: clamp(14px, min(18px, var(--aspect-base) * 18) ,18px);
    line-height: clamp(21px, min(27px, var(--aspect-base) * 27) ,27px);
  }
    
}