@charset "UTF-8";

/* ==============================
   THEME: "HONEST LEADERSHIP"
   ============================== */
:root {
  --main:#0b3954;       /* 静かな青（誠実） */
  --accent:#ffb703;     /* 柔らかな黄金（勇気） */
  --muted:#6c757d;
  --bg:#fdfdfd;
  --highlight:#fff5d1;  /* 優しい光 */
}

body {
  font-family:'Noto Sans JP','Hiragino Sans',sans-serif;
  color:#222;
  background:var(--bg);
  line-height:1.9;
}

h1 {
  font-size:2.2rem;
  font-weight:800;
  color:var(--main);
  border-left:6px solid var(--accent);
  padding-left:12px;
  margin:1rem 0 1.4rem;
}

h2 {
  font-size:1.4rem;
  font-weight:700;
  color:#333;
  margin:2.2rem 0 0.8rem;
}

blockquote {
  border-left:4px solid var(--accent);
  background:#fff8e1;
  padding:1rem 1.3rem;
  border-radius:8px;
  font-style:italic;
  color:#444;
  transition:all .4s ease;
}
blockquote:hover {
  box-shadow:0 0 15px rgba(255,183,3,0.35);
}

.hero {
  background:linear-gradient(135deg,#0b3954 0%,#1e6091 60%,#168aad 100%);
  color:#fff;
  border-radius:12px;
  padding:3rem 2rem;
  box-shadow:0 5px 20px rgba(0,0,0,.08);
  margin-bottom:2rem;
}

.callout {
  border-left:5px solid var(--accent);
  background:var(--highlight);
  border-radius:8px;
  padding:1rem 1.3rem;
  margin:1.5rem 0;
  color:#3e2e00;
}

footer {
  text-align:center;
  color:#999;
  font-size:0.85rem;
  margin-top:4rem;
}
