:root {
  color-scheme: light;
  --paper: #efe7d3;
  --ink: #241d16;
  --muted: #6c5c49;
  --rule: rgba(65, 48, 32, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  line-height: 1.8;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.image-site {
  width: 100%;
}

.image-stack {
  width: 100%;
  margin: 0 auto;
}

.image-layer {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.header-layer,
.main-layer,
.footer-layer {
  display: block;
}

.mobile-layer {
  display: none;
}

.hotspot,
.hotspot-button {
  position: absolute;
  z-index: 2;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  font: inherit;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
}

.hotspot:focus-visible,
.hotspot-button:focus-visible {
  outline: 2px solid rgba(44, 33, 20, 0.7);
  outline-offset: 2px;
}

.mobile-menu-target {
  display: none;
}

.mobile-layer.is-menu-open .mobile-menu-target {
  display: block;
}

.mobile-layer.is-menu-open .menu-open-button {
  display: none;
}

.menu-close-button {
  display: none;
}

.mobile-layer.is-menu-open .menu-close-button {
  display: block;
}

.privacy-page {
  min-height: 100vh;
}

.privacy-wrap {
  width: min(100% - 32px, 880px);
  margin: 0 auto;
  padding: 56px 0 72px;
}

.privacy-document {
  padding: 40px;
  border: 1px solid var(--rule);
  background: rgba(255, 250, 238, 0.62);
}

.privacy-document h1,
.privacy-document h2 {
  margin: 0;
  line-height: 1.45;
  font-weight: 600;
}

.privacy-document h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0;
}

.privacy-document .updated {
  margin: 8px 0 32px;
  color: var(--muted);
}

.privacy-document section {
  margin-top: 28px;
}

.privacy-document h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.privacy-document p {
  margin: 0;
}

.privacy-document .signature {
  margin-top: 32px;
}

@media (max-width: 767px) {
  .image-stack > .header-layer,
  .image-stack > .main-layer,
  .image-stack > .footer-layer {
    display: none;
  }

  .image-stack > .mobile-layer {
    display: block;
  }

  .privacy-wrap {
    width: min(100% - 24px, 720px);
    padding: 32px 0 48px;
  }

  .privacy-document {
    padding: 24px;
  }
}
