/* Tone A — 信頼・権威
 * Medical-institution grade. Serif-led, straight lines, thin rules, learned-society feel.
 * 最小・理念版: training / hospital / sponsor / members セクションのCSSは除外済み。
 */
:root {
  --primary: #0A3E7A;
  --primary-deep: #062750;
  --accent: #8A6A3A;
  --accent-soft: #C8B489;
  --edu-green: #2E7D5B;
  --bg: #FFFFFF;
  --bg-alt: #F6F1E6;
  --bg-hero: #F9F6EE;
  --card-bg: #FBF8F0;
  --heading: #0A1A33;
  --text: #1F2530;
  --muted: #6A6E78;
  --rule: rgba(10, 30, 65, 0.10);
  --footer-bg: #0A1A33;
  --footer-fg: #C6CEDC;
  --btn-radius: 2px;
  --card-radius: 2px;
  --page-max: 1260px;
  --page-gutter: 72px;
  --section-pad-y: 120px;
}

body {
  font-family: var(--font-sans-ja);
  letter-spacing: 0.03em;
}

h1, h2, h3, h4 { font-family: var(--font-serif-ja); }

/* Header */
.site-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
/* 公式ロゴ（小サイズのみ。拡大しない） */
.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.brand__name { font-family: var(--font-serif-ja); font-size: 14.5px; letter-spacing: 0.1em; }
/* フッターは暗背景なのでロゴを白チップに載せて視認性を確保 */
.site-footer .brand__logo {
  background: #fff;
  border-radius: 6px;
  padding: 4px;
}

/* Hero — two column, serif headline, thin horizontal rules */
.hero {
  background: var(--bg-hero);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-latin-sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 3px;
}
.hero__headline {
  font-family: var(--font-serif-ja);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--heading);
  margin: 26px 0 28px;
}
.hero__headline span { display: block; }
.hero__lead {
  font-size: 16px;
  line-height: 2.05;
  color: var(--text);
  max-width: 520px;
  margin: 0 0 40px;
}
.hero__cta { display: flex; gap: 16px; }
/* ヒーロー右側は空白（余白）。タグラインは見出し上の明朝アクセント行。 */
.hero__tagline {
  font-family: var(--font-serif-ja);
  font-size: 19px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.06em;
  margin: 18px 0 0;
}

/* Section heading（番号カラムは廃止。英語ラベルは小さなキッカー） */
.sec-head {
  display: block;
  margin-bottom: 48px;
}
.sec-head__kicker {
  display: inline-block;
  font-family: var(--font-latin-sans);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-head__kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}
.sec-head__title {
  font-family: var(--font-serif-ja);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--heading);
  margin: 0 0 16px;
  letter-spacing: 0.03em;
}
.sec-head__lead {
  font-size: 16px;
  line-height: 2.0;
  color: var(--text);
  max-width: 760px;
  margin: 0;
}

/* Greeting（ポートレート廃止・1カラム） */
.greeting {
  max-width: 820px;
}
.greeting__body p {
  font-size: 15.5px;
  line-height: 2.1;
  color: var(--text);
  margin: 0 0 18px;
}
.greeting__sig {
  margin-top: 28px;
  font-family: var(--font-serif-ja);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.greeting__sig-title {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.greeting__sig-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
}

/* What-is competencies */
.whatis {
  background: var(--bg-alt);
}
.whatis__definition {
  font-family: var(--font-serif-ja);
  font-size: 22px;
  line-height: 1.95;
  color: var(--heading);
  padding: 30px 36px;
  border-left: 3px solid var(--accent);
  background: #fff;
  margin-bottom: 48px;
  max-width: 880px;
}
.comp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.comp-card {
  background: #fff;
  padding: 28px 22px;
  border-top: 2px solid var(--primary);
  min-height: 180px;
}
.comp-card__num {
  font-family: var(--font-latin-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 8px;
}
.comp-card__label {
  font-family: var(--font-serif-ja);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}
.comp-card__desc {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}
.issue-list {
  margin: 40px 0 0;
  max-width: 760px;
}
.issue-list h4 {
  font-family: var(--font-sans-ja);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
}
.issue-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.issue-list li {
  font-size: 14px;
  line-height: 1.8;
  padding-left: 18px;
  position: relative;
  color: var(--text);
}
.issue-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1.5px;
  background: var(--accent);
}
.distinction {
  margin: 40px 0 0;
  max-width: 760px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  padding: 18px 22px;
  background: rgba(255,255,255,0.6);
  border-left: 2px solid var(--primary);
}

/* News */
.news { background: var(--bg-alt); }
.news-item__title { color: var(--heading); }

/* Footer */
.site-footer { background: var(--primary-deep); }
.footer-mission {
  font-family: var(--font-serif-ja);
  font-size: 18px;
  line-height: 1.85;
  color: #fff;
  margin-bottom: 20px;
}
