/* ── BASE ── */
:root {
  --bg:           #faf7f3;
  --bg2:          #f0e9df;
  --bg3:          #ffffff;
  --border:       #e0d5c8;
  --accent:       #b8905a;
  --accent-light: #f5ede0;
  --text-dark:    #3d2e1e;
  --text-mid:     #6b5a47;
  --text-light:   #9a8878;
  --radius:       20px;
  --radius-sm:    12px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dark);
  background: var(--bg);
}

h1, h2, h3, h4 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  line-height: 1.5;
}

.wp-block-group__inner-container,
.entry-content {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}