@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Noto+Sans+JP:wght@500;700&display=swap');

:root {
  --bg: #F7F4F0;
  --text: #0F1724;
  --muted: #667085;
  --line: #E6E1DC;
  --accent: #C76C3D;
}

/* Base */
body.site {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  margin: 0;
}

/* Brand */
.brand-mark {
  font-family: "Noto Sans JP", Inter;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .5px;
  padding: .35rem .75rem;
  background: #F2F2EF;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
}
.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin: 0 4px;
}
.brand-tail {
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
}

/* Hero / Product */
.hero-img, .product-img {
  border-radius: 20px;
  object-fit: cover;
}

/* Footer */
footer {
  font-size: 14px;
}
