/* minori — ビルド不要の最小ユーティリティCSS */
:root {
  --bg: #f7f8fa;
  --card: #ffffff;
  --ink: #1f2933;
  --muted: #6b7280;
  --brand: #1f7a4d;
  --brand-dark: #15603b;
  --border: #e5e7eb;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1080px; margin: 0 auto; padding: 1.5rem; }
.nav {
  background: var(--brand);
  color: #fff;
  padding: .8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav a { color: #fff; }
.nav .brand { font-weight: 700; font-size: 1.2rem; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) { .grid-2, .grid-4 { grid-template-columns: 1fr; } }
.stat { text-align: center; }
.stat .value { font-size: 1.8rem; font-weight: 700; color: var(--brand); }
.stat .label { font-size: .85rem; color: var(--muted); }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: .6rem .5rem; border-bottom: 1px solid var(--border); }
th { font-size: .8rem; color: var(--muted); text-transform: uppercase; }
.badge {
  display: inline-block; padding: .15rem .6rem; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
}
.badge.published { background: #e6f4ea; color: var(--brand-dark); }
.badge.scheduled { background: #eef2ff; color: #3730a3; }
.badge.generating { background: #fef9c3; color: #854d0e; }
.badge.failed { background: #fee2e2; color: #991b1b; }
.btn {
  display: inline-block; background: var(--brand); color: #fff;
  padding: .6rem 1.2rem; border-radius: 8px; border: none; cursor: pointer;
  font-size: 1rem;
}
.btn:hover { background: var(--brand-dark); text-decoration: none; }
.progress { background: var(--border); border-radius: 999px; height: 12px; overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--brand); }
input[type=email], input[type=password], input[type=text] {
  width: 100%; padding: .6rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: 1rem;
}
label { display: block; margin: .8rem 0 .3rem; font-weight: 600; }
.hero { text-align: center; padding: 3rem 1rem; }
.hero h1 { font-size: 2.2rem; margin-bottom: .5rem; }
.muted { color: var(--muted); }
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }
.plan { text-align: center; }
.plan .price { font-size: 1.6rem; font-weight: 700; color: var(--brand); }
