/* /public_html/assets/css/index.css  (LIGHT ONLY) */

:root{
  --bg:#fafafa;
  --card:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;

  --accent:#e86800;
  --accent2:#c93c20;

  --radius:18px;
  --shadow:0 10px 24px rgba(0,0,0,.10);

  --container:1200px;
  --gutter:16px;
}

*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }
body{
  background:var(--bg);
  color:var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height:1.55;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button, input, select, textarea{ font:inherit; }
p{ margin:0 0 12px; color:var(--muted); }
h1,h2,h3{ margin:0 0 12px; color:var(--text); line-height:1.2; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--gutter);
}

.section{
  padding:70px 0;
  border-top:1px solid var(--border);
}
.section:first-of-type{ border-top:0; }

.hero{ padding:90px 0 70px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:center;
}
.hero__title{
  font-size: clamp(30px, 4vw, 44px);
  font-weight:900;
  letter-spacing:-.02em;
}
.hero__lead{ font-size:16px; max-width:58ch; }

.hero__card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.hero__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(232,104,0,.08);
  font-weight:800;
  font-size:12px;
  color:var(--text);
  margin-bottom:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--card);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
}
.btn--primary{
  border-color:rgba(232,104,0,.35);
  background:rgba(232,104,0,.14);
}
.btn:focus{
  outline:3px solid rgba(232,104,0,.25);
  outline-offset:2px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
}
.card__title{ font-weight:900; margin-bottom:8px; }
.card__text{ color:var(--muted); font-size:13px; }

.footer{
  border-top:1px solid var(--border);
  padding:34px 0;
  text-align:center;
  color:var(--muted);
}

@media (max-width: 900px){
  .hero__grid{ grid-template-columns:1fr; }
  .grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  :root{ --gutter:14px; }
  .section{ padding:56px 0; }
  .hero{ padding:76px 0 56px; }
  .grid{ grid-template-columns:1fr; }
}

/* Utility tokens */
.kr-card{ background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow); }
.kr-muted{ color: var(--muted); }
.kr-border{ border-color: var(--border); }
.kr-accent{ color: var(--accent); }
