body {
  background: #fffdfa;
}

.privacy-hero {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 40rem;
  background: #fffdfa;
}

.privacy-hero__left {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: repeating-linear-gradient(
    90deg,
    #fff 0,
    #fff 22px,
    #a3d6cc5c 22px,
    #a3d6cc5c 44px
  );
}

.pagetop-frame {
  position: absolute;
  inset: 3rem;
  display: grid;
  place-items: center;
}

.pagetop-frame__content {
  position: relative;
  z-index: 3;
  padding: 3rem;
  text-align: center;
}

.privacy-hero h1 {
  font-family: var(--en);
  font-size: clamp(3.8rem, 4.8vw, 5.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.privacy-hero__jp {
  margin: 0.5rem 0 2.5rem;
  font-size: 2rem;
}

.privacy-hero__visual {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(168, 220, 211, 0.82), transparent 1.2rem) left
      center / 1.2rem 100% no-repeat,
    #d9d9d9;
  color: #747474;
  font-family: var(--en);
  font-size: 3rem;
  letter-spacing: 0.08em;
}

.privacy-section {
  padding: 6rem 0 7rem;
}

.privacy-container {
  width: min(calc(100% - 6rem), 96rem);
  margin-inline: auto;
}

.privacy-heading-row {
  display: grid;
  grid-template-columns: minmax(5rem, 1fr) auto minmax(5rem, 1fr);
  align-items: center;
  gap: 1.5rem;
  width: min(100%, 68rem);
  margin-inline: auto;
}

.privacy-heading-row img {
  width: 100%;
  height: auto;
  max-height: 3.2rem;
  object-fit: contain;
}

.privacy-heading-row h2 {
  color: var(--blue);
  font-family: var(--en);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.privacy-heading-row small {
  display: block;
  margin-top: 0.4rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.privacy-card {
  position: relative;
  margin-top: 3rem;
  padding: 4rem 5rem;
  border: 1px solid #add8d1;
  border-radius: 1.2rem;
  /* background:
    url("./images/deco_h2.svg") left 2rem top 2rem / 13rem auto no-repeat,
    url("./images/deco_h2r.svg") right 2rem bottom 2rem / 13rem auto no-repeat,
    #fff; */
}

.privacy-lead {
  color: var(--blue);
  font-size: 1.7rem;
  line-height: 2;
}

.privacy-card section {
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px dashed #b7d8d2;
}

.privacy-card h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--blue);
  font-size: 1.9rem;
  font-weight: 500;
}

.privacy-card h3::before {
  content: "";
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--mint);
}

.privacy-card p {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 2;
}

.privacy-updated {
  margin-top: 3rem;
  text-align: right;
}

.privacy-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.privacy-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(28rem, 100%);
  padding: 1.4rem 2.6rem;
  border: 1px solid var(--blue);
  border-radius: 1rem;
  background: var(--cream);
  color: var(--blue);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.privacy-button--sub {
  background: var(--cream);
  color: var(--blue);
}

.privacy-button:hover {
  border-color: #dceeea;
  background: #dceeea;
  color: var(--ink);
}

@media (max-width: 767px) {
  .privacy-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .privacy-hero__left {
    min-height: 30rem;
  }

  .pagetop-frame {
    inset: 1.5rem;
  }

  .privacy-hero .fv__corner {
    width: 6rem;
  }

  .privacy-hero .fv__corner--lt,
  .privacy-hero .fv__corner--rt {
    top: 0;
  }

  .privacy-hero .fv__corner--lb,
  .privacy-hero .fv__corner--rb {
    bottom: 0;
  }

  .privacy-hero .fv__corner--lt,
  .privacy-hero .fv__corner--lb {
    left: 0;
  }

  .privacy-hero .fv__corner--rt,
  .privacy-hero .fv__corner--rb {
    right: 0;
  }

  .privacy-hero__visual {
    min-height: 18rem;
    font-size: 2.2rem;
  }

  .privacy-section {
    padding: 4.5rem 0 5.5rem;
  }

  .privacy-container {
    width: min(calc(100% - 3.2rem), 96rem);
  }

  .privacy-heading-row {
    grid-template-columns: minmax(3rem, 1fr) auto minmax(3rem, 1fr);
    gap: 0.8rem;
  }

  .privacy-heading-row img {
    max-height: 2.8rem;
  }

  .privacy-heading-row h2 {
    font-size: 2.2rem;
  }

  .privacy-card {
    padding: 3rem 1.8rem;
    background-size:
      9rem auto,
      9rem auto,
      auto;
  }

  .privacy-lead {
    font-size: 1.55rem;
  }

  .privacy-card h3 {
    font-size: 1.7rem;
  }

  .privacy-card p {
    font-size: 1.45rem;
  }

  .privacy-updated {
    text-align: left;
  }

  .privacy-actions {
    flex-direction: column;
    align-items: center;
  }
}
