body {
  margin: 0;
  min-height: 100vh;
  background-color: #fefdf9;
  background-image:
    /* 柔らかな色むら */
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.9), rgba(245,245,240,0.95) 60%, rgba(240,240,235,1)),
    /* 和紙の繊維っぽいノイズ */
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 3px);
  background-blend-mode: multiply;
  background-size: cover, 4px 4px, 4px 4px;
  color: #333;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

/* 波打つような陰影 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.6), rgba(0,0,0,0.05) 60%, rgba(255,255,255,0.3));
  background-size: 100% 300%;
  mix-blend-mode: multiply;
  animation: washiWave 12s ease-in-out infinite alternate;
  opacity: 0.8;
}

@keyframes washiWave {
  0% { background-position: 0 0; }
  100% { background-position: 0 100%; }
}
