/* 開運カレンダー – Legal pages styles */
:root {
  --bg: #FFF9FB;
  --surface: #FFFFFF;
  --text: #2A2330;
  --text-secondary: #6B6175;
  --accent: #FD638A;
  --accent-soft: #FBE4EE;
  --border: #EEDDE7;
  --max-width: 720px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", Meiryo, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px 64px;
}

header.page-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 28px;
}

header.page-header h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
}

header.page-header .meta {
  font-size: 13px;
  color: var(--text-secondary);
}

nav.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

nav.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

nav.breadcrumb a:hover { text-decoration: underline; }

nav.breadcrumb .language-link {
  margin-left: auto;
  font-weight: 600;
}

p.intro {
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0 0 32px;
  color: var(--text);
  font-size: 15px;
}

section.policy-section {
  margin-bottom: 32px;
}

section.policy-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

section.policy-section .body {
  font-size: 15px;
  white-space: pre-wrap;
  color: var(--text);
}

footer.page-footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

footer.page-footer a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 8px;
}

footer.page-footer a:hover { text-decoration: underline; }

.contact-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 16px;
}

.contact-btn:hover { opacity: 0.9; }

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  margin-bottom: 12px;
}

.link-list a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: border-color 0.15s;
}

.link-list a:hover {
  border-color: var(--accent);
}

.link-list .desc {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 4px;
}
