/* ポモポイ 静的ページ共通スタイル */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  line-height: 1.7;
  color: #333;
  background: linear-gradient(135deg, #1C1726 0%, #2A1E28 100%);
  min-height: 100vh;
  padding: 20px;
}
.container { max-width: 800px; margin: 0 auto; }
header {
  background: white; border-radius: 12px; padding: 30px 20px; text-align: center;
  margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
h1 { font-size: 1.8em; color: #FF5A4D; margin-bottom: 8px; }
.subtitle { color: #666; }
.content {
  background: white; border-radius: 12px; padding: 30px; margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
h2 { color: #FF5A4D; margin: 24px 0 12px; padding-bottom: 8px; border-bottom: 2px solid #FFE4E1; font-size: 1.3em; }
h2:first-child { margin-top: 0; }
h3 { color: #D94538; margin: 18px 0 8px; font-size: 1.05em; }
p { margin-bottom: 10px; font-size: 0.95em; }
ul, ol { margin: 8px 0 14px 24px; font-size: 0.95em; }
li { margin-bottom: 6px; }
.date { color: #999; font-size: 0.85em; margin-bottom: 16px; }
.footer-note { color: #999; font-size: 0.85em; margin-top: 24px; }
a { color: #FF5A4D; }
.notice {
  background: #FEF3C7; border-left: 4px solid #F59E0B; padding: 14px;
  border-radius: 6px; margin: 14px 0; font-size: 0.9em;
}
nav.links { text-align: center; margin-top: 8px; }
nav.links a { margin: 0 10px; font-size: 0.9em; }
