.main.privacy-policy {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-bg);
  z-index: 1;
  padding-bottom: 34.5rem;
}

.privacy-policy__background-layer {
  background: url(../images/pc/bg/bg5.webp);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: var(--z-background);
}

.privacy-policy__inner {
  position: relative;
  max-width: 198rem;
  width: 100%;
  margin: auto;
  z-index: var(--z-content-base);
}

.privacy-policy__container {
  position: relative;
}

.privacy-policy__content-wrapper {
  padding: 0 8% 0 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8%;
  align-items: flex-start;
  z-index: var(--z-spotlight);
}

.privacy-policy__left {
  margin-top: 0;
  position: sticky;
  top: var(--header-height-pc);
}

.privacy-policy__heading{
  font-family: var(--font-main);
  font-size: 8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-dark);
  padding: 6rem 0;
}
.privacy-policy__content {
  max-width: 100rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 28.1rem;
  flex: 1;
  z-index: var(--z-sticky-content);
}
.privacy-policy__item{
  margin-bottom: 4rem;
}
.privacy-policy__intro{
  margin-bottom: 6rem;
}
.privacy-policy__text{
  color: #000;
  font-family: var(--font-strong) !important;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.07rem;
}
.privacy-policy__label{
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .main.privacy-policy {
    padding-bottom: 25rem;
  }

  .privacy-policy__background-layer {
    background: url(../images/sp/bg/bg5.webp);
    top: 0;
    bottom: 0;
    background-position: top;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .pc-br{
    display: none;
  }
  .privacy-policy__left {
    position: relative;
    top: 0;
  }

  .privacy-policy__heading {
    font-size: 3.6rem;
    line-height: 1.38;
    padding: 2rem 0;
    position: relative;
    top: 0;
  }
  .privacy-policy__content-wrapper {
    padding: 0;
    flex-direction: column;
  }

  .privacy-policy__content {
    max-width: none;
    padding: 4rem 3rem 0rem;
    margin-top: 0;
  }

  .privacy-policy__text {
    align-self: stretch;
  }
}