/* ========== 組織体制ページ ========== */
.org-page {
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 4rem;
}

.org-page .container {
  max-width: 1040px;
}

/* ヒーロー */
.org-hero {
  padding: 28px 0 12px;
}

.org-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 6px;
}

.org-lead {
  color: #667085;
  margin: 0;
}

/* 図版 */
.org-figure {
  margin: 18px 0 8px;
}

.org-figure img {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
}

.org-caption {
  font-size: .95rem;
  color: #6b7280;
  margin-top: 8px;
}

/* 概要セクション */
.org-sections {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 22px 0 6px;
}

.org-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px 16px 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .03);
}

.org-h2 {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 8px;
}

.org-bar {
  display: inline-block;
  width: 10px;
  height: 1.4em;
  border-radius: 4px;
  flex-shrink: 0;
}

.org-bar--red {
  background: #f45e5e;
}

.org-bar--blue {
  background: #1f6aa5;
}

.org-bar--yellow {
  background: #f2b448;
}

.org-note {
  color: #6b7280;
  font-weight: 400;
  font-size: .95rem;
}

.org-list {
  margin: 0;
  padding-left: 1.2rem;
}

.org-list li {
  margin: .35rem 0;
  line-height: 1.7;
}

/* CTA */
.org-cta {
  text-align: center;
  padding: 28px 0 40px;
}

.org-cta-lead {
  margin-bottom: 14px;
  color: #475467;
}

.org-cta-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s ease, transform .05s ease;
}

.btn-primary {
  background: #c07ade;
  color: #fff;
}

.btn-primary:hover {
  opacity: .92;
}

.btn-outline {
  border: 1px solid #c07ade;
  color: #c07ade;
}

.btn-outline:hover {
  background: #f7ecff;
}

/* レスポンシブ */
@media (max-width: 992px) {
  .org-sections {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .org-title {
    font-size: 24px;
  }

  .org-page .container {
    padding: 0 16px;
  }

  .org-sections {
    grid-template-columns: 1fr;
  }
}