/* Design tokens */
:root {
  --font-noto: "Noto Sans JP", sans-serif;
  --font-outfit: "Outfit", sans-serif;
  --bg-color: #f7f9fa;
  --text-main: #242424;
  --text-sub: #666666;
  --footer-bg: #242424;
  --footer-text-muted: #999999;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font-noto);
  background-color: var(--bg-color);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  -webkit-user-select: none;
  user-select: none;
}

/* Content */
.privacy-container {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 20px 80px;
  flex: 1;
}

.page-title {
  font-family: var(--font-outfit);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #171717;
  margin-bottom: 8px;
}

.last-updated {
  font-family: var(--font-outfit);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-sub);
  margin-bottom: 48px;
}

.section-title {
  font-size: 15px;
  font-weight: 700;
  color: #171717;
  margin-top: 36px;
  margin-bottom: 12px;
}

.section-text {
  font-size: 13.5px;
  line-height: 1.85;
  color: #333333;
  margin-bottom: 14px;
}

.contact-link {
  font-family: var(--font-outfit);
  font-weight: 300;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #000000;
}

/* Footer */
.clean-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text-muted);
  font-family: var(--font-outfit);
  font-size: 12px;
  font-weight: 300;
  padding: 24px 20px;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bottom-copyright {
  font-size: 12px;
  font-weight: 300;
  color: inherit;
}

.dot-separator {
  color: inherit;
}

.privacy-link {
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.privacy-link:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 680px) {
  .privacy-container {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .page-title {
    font-size: 24px;
  }
}
