@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
  color: #333;
  background: #f5f5f0;
  line-height: 1.8;
  font-size: 14px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #1a2744;
  color: #b0b8c8;
  font-size: 11px;
  padding: 4px 0;
  letter-spacing: 0.05em;
}
.top-bar .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: #b0b8c8;
  text-decoration: none;
  margin-left: 16px;
  font-size: 11px;
}
.top-bar a:hover { color: #fff; }

/* ===== HEADER ===== */
.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
}
.header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-mark {
  width: 56px;
  height: 56px;
  background: #1a2744;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8a84e;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -2px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .sub {
  font-size: 10px;
  color: #888;
  letter-spacing: 0.1em;
}
.logo-text .main {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a2744;
  letter-spacing: 0.08em;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  overflow: hidden;
}
.search-box input {
  border: none;
  padding: 6px 10px;
  font-size: 12px;
  width: 160px;
  outline: none;
}
.search-box button {
  background: #1a2744;
  color: #fff;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12px;
}

/* ===== GLOBAL NAV ===== */
.gnav {
  background: #1a2744;
  border-top: 3px solid #c8a84e;
}
.gnav .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.gnav a {
  color: #fff;
  text-decoration: none;
  padding: 14px 0;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
  position: relative;
}
.gnav a:first-child { border-left: 1px solid rgba(255,255,255,0.12); }
.gnav a:hover { background: rgba(200,168,78,0.15); }
.gnav a.current { background: rgba(200,168,78,0.25); }

/* ===== PAGE HEADER (下層ページ用) ===== */
.page-header {
  background: linear-gradient(135deg, #1a2744 0%, #2a3f6a 50%, #1a2744 100%);
  padding: 40px 0;
  position: relative;
}
.page-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-header h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
.page-header .en-title {
  font-size: 11px;
  color: #c8a84e;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 11px;
  color: #888;
}
.breadcrumb a {
  color: #1a2744;
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: #ccc; }

/* ===== CONTENT AREA ===== */
.content-area {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  gap: 30px;
}
.main-content {
  flex: 1;
  min-width: 0;
}
.sidebar {
  width: 280px;
  flex-shrink: 0;
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a2744;
  padding-bottom: 10px;
  border-bottom: 2px solid #1a2744;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title .en {
  font-size: 10px;
  color: #999;
  letter-spacing: 0.1em;
  font-weight: 400;
}

/* ===== ARTICLE BODY ===== */
.article-body {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  margin-bottom: 30px;
  line-height: 2;
}
.article-body h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a2744;
  margin: 30px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a2744;
  margin: 24px 0 10px;
}
.article-body p {
  margin-bottom: 16px;
  text-align: justify;
}
.article-body blockquote {
  background: #faf6eb;
  border-left: 4px solid #c8a84e;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 13.5px;
  line-height: 2;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13px;
}
.article-body table th {
  background: #1a2744;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
}
.article-body table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e0e0d8;
  vertical-align: top;
}
.article-body table tr:nth-child(even) td {
  background: #fafaf6;
}
.article-body .signature {
  text-align: right;
  margin-top: 20px;
  font-size: 13px;
  color: #666;
}
.article-body .exam-question {
  background: #f8f8f4;
  border: 1px solid #ddd;
  padding: 20px;
  margin: 16px 0;
}
.article-body .exam-question .q-label {
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 8px;
}
.article-body .exam-question .choices {
  margin: 10px 0 10px 20px;
}
.article-body .exam-question .answer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #ccc;
  color: #8b2020;
  font-weight: 500;
}
.article-body .voice-box {
  background: #faf6eb;
  border: 1px solid #e0d8c0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 13px;
}
.article-body .voice-box .voice-name {
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 6px;
}
.article-body .org-chart {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
  background: #fafaf6;
  border: 1px solid #ddd;
}
.article-body .org-chart .org-box {
  display: inline-block;
  background: #1a2744;
  color: #fff;
  padding: 8px 20px;
  margin: 4px;
  font-size: 12px;
  font-weight: 500;
}
.article-body .org-chart .org-box.gold {
  background: #c8a84e;
  color: #1a2744;
}
.article-body .org-chart .org-line {
  display: block;
  text-align: center;
  color: #999;
  font-size: 18px;
  margin: 4px 0;
}
.article-body .member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
}
.article-body .member-card {
  background: #fafaf6;
  border: 1px solid #e0e0d8;
  padding: 14px;
}
.article-body .member-card .m-name {
  font-weight: 700;
  color: #1a2744;
  font-size: 13px;
  margin-bottom: 4px;
}
.article-body .member-card .m-desc {
  font-size: 11.5px;
  color: #666;
  line-height: 1.6;
}

/* ===== NEWS LIST ===== */
.news-list {
  list-style: none;
  margin-bottom: 30px;
}
.news-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0d8;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.news-date {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
  min-width: 90px;
}
.news-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 500;
}
.tag-press { background: #1a2744; color: #fff; }
.tag-info { background: #3a6b4c; color: #fff; }
.tag-important { background: #8b2020; color: #fff; }
.tag-alert { background: #c8a84e; color: #1a2744; }
.tag-event { background: #4a6a8a; color: #fff; }
.news-text {
  font-size: 13.5px;
  color: #333;
  line-height: 1.6;
}
.news-text a {
  color: #333;
  text-decoration: none;
}
.news-text a:hover {
  color: #1a2744;
  text-decoration: underline;
}
.more-link {
  text-align: right;
  margin-top: -10px;
  margin-bottom: 30px;
}
.more-link a {
  font-size: 12px;
  color: #1a2744;
  text-decoration: none;
  border-bottom: 1px solid #1a2744;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-color: #c8a84e;
}
.card-icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: #1a2744;
}
.card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a2744;
  margin-bottom: 6px;
  line-height: 1.5;
}
.card-desc {
  font-size: 11.5px;
  color: #777;
  line-height: 1.6;
}

/* ===== SIDEBAR ===== */
.sidebar-banner {
  display: block;
  background: #fff;
  border: 2px solid #1a2744;
  padding: 18px 14px;
  margin-bottom: 14px;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s;
}
.sidebar-banner:hover { border-color: #c8a84e; }
.sidebar-banner .banner-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 4px;
  line-height: 1.5;
}
.sidebar-banner .banner-sub {
  font-size: 11px;
  color: #888;
}
.sidebar-banner.accent {
  background: #1a2744;
  border-color: #1a2744;
}
.sidebar-banner.accent .banner-title { color: #c8a84e; }
.sidebar-banner.accent .banner-sub { color: #b0b8c8; }
.sidebar-banner.gold {
  border-color: #c8a84e;
  background: #faf6eb;
}

.sidebar-section {
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 14px;
}
.sidebar-section-title {
  background: #1a2744;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  letter-spacing: 0.05em;
}
.sidebar-section-body {
  padding: 14px;
  font-size: 12px;
  color: #555;
  line-height: 1.8;
}
.sidebar-section-body a {
  color: #1a2744;
  text-decoration: none;
}
.sidebar-section-body a:hover { text-decoration: underline; }

.sidebar-nav { list-style: none; }
.sidebar-nav li {
  border-bottom: 1px solid #e0e0d8;
}
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition: background 0.15s;
}
.sidebar-nav a:hover { background: #faf6eb; }
.sidebar-nav a.current {
  background: #faf6eb;
  color: #1a2744;
  font-weight: 700;
  border-left: 3px solid #c8a84e;
}

/* ===== PICKUP SECTION ===== */
.pickup-section {
  background: #fff;
  border: 1px solid #ddd;
  padding: 24px;
  margin-bottom: 30px;
}
.pickup-section .section-title { margin-bottom: 14px; }
.pickup-quote {
  background: #faf6eb;
  border-left: 4px solid #c8a84e;
  padding: 16px 20px;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: #444;
  line-height: 2;
  margin-bottom: 10px;
}
.pickup-source {
  text-align: right;
  font-size: 12px;
  color: #888;
}

/* ===== CERTIFICATION MARK ===== */
.cert-section {
  background: #1a2744;
  padding: 40px 0;
  margin-top: 10px;
}
.cert-section .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.cert-mark {
  width: 140px;
  height: 140px;
  border: 3px solid #c8a84e;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #c8a84e;
  flex-shrink: 0;
}
.cert-mark .mark-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.4;
}
.cert-mark .mark-main {
  font-size: 16px;
  font-weight: 700;
  margin: 4px 0;
}
.cert-info { color: #ddd; }
.cert-info h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: #c8a84e;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.cert-info p {
  font-size: 13px;
  line-height: 1.9;
  color: #b0b8c8;
}
.cert-info .cert-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 24px;
  border: 1px solid #c8a84e;
  color: #c8a84e;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.cert-info .cert-btn:hover { background: rgba(200,168,78,0.15); }

/* ===== MAIN VISUAL (トップページ用) ===== */
.main-visual {
  background: linear-gradient(135deg, #1a2744 0%, #2a3f6a 50%, #1a2744 100%);
  position: relative;
  overflow: hidden;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><rect fill="none" stroke="rgba(200,168,78,0.06)" stroke-width="1" x="0" y="0" width="200" height="200"/><line x1="0" y1="0" x2="200" y2="200" stroke="rgba(200,168,78,0.03)" stroke-width="1"/></svg>');
  background-size: 200px 200px;
}
.mv-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 40px;
}
.mv-content .catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 16px;
}
.mv-content .sub-catch {
  font-size: 14px;
  letter-spacing: 0.12em;
  opacity: 0.8;
  font-weight: 400;
}
.mv-badge {
  position: absolute;
  bottom: 20px;
  right: 40px;
  background: #c8a84e;
  color: #1a2744;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #999;
  padding: 30px 0 0;
}
.footer .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}
.footer-col h4 {
  font-size: 13px;
  color: #c8a84e;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: #888;
  text-decoration: none;
  padding: 3px 0;
  line-height: 1.6;
}
.footer-col a:hover { color: #ccc; }
.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #666;
}
.footer-bottom .disclaimer {
  max-width: 600px;
  line-height: 1.6;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a2744;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== RESPONSIVE: TABLET (max-width: 900px) ===== */
@media screen and (max-width: 900px) {

  /* Header */
  .header .inner {
    flex-wrap: wrap;
    gap: 10px;
  }
  .logo-text .main {
    font-size: 17px;
  }
  .search-box input {
    width: 120px;
  }

  /* Global Nav - show hamburger */
  .hamburger {
    display: block;
  }
  .gnav {
    position: relative;
  }
  .gnav .inner {
    flex-direction: column;
    display: none;
    padding: 0;
  }
  .gnav .inner.open {
    display: flex;
  }
  .gnav a {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
  }
  .gnav a:first-child {
    border-left: none;
  }

  /* Content Area - stack layout */
  .content-area {
    flex-direction: column;
    padding: 20px 16px;
    gap: 20px;
  }
  .sidebar {
    width: 100%;
  }

  /* Main Visual */
  .main-visual {
    height: 280px;
  }
  .mv-content .catch {
    font-size: 24px;
    letter-spacing: 0.08em;
  }
  .mv-content .sub-catch {
    font-size: 12px;
  }
  .mv-badge {
    right: 16px;
    bottom: 12px;
    font-size: 11px;
    padding: 6px 14px;
  }

  /* Card Grid */
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Certification Section */
  .cert-section .inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Page Header */
  .page-header h1 {
    font-size: 22px;
  }

  /* Article Body */
  .article-body {
    padding: 20px;
  }
  .article-body .member-grid {
    grid-template-columns: 1fr;
  }

  /* Table responsive */
  .article-body table {
    font-size: 12px;
  }
  .article-body table th,
  .article-body table td {
    padding: 8px 10px;
  }
}

/* ===== RESPONSIVE: SMARTPHONE (max-width: 600px) ===== */
@media screen and (max-width: 600px) {

  body {
    font-size: 13px;
  }

  /* Top Bar */
  .top-bar {
    font-size: 10px;
    padding: 3px 0;
  }
  .top-bar .inner {
    padding: 0 12px;
  }
  .top-bar a {
    margin-left: 10px;
    font-size: 10px;
  }

  /* Header */
  .header {
    padding: 10px 0;
  }
  .header .inner {
    padding: 0 12px;
  }
  .logo-mark {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .logo-text .sub {
    font-size: 9px;
  }
  .logo-text .main {
    font-size: 15px;
    letter-spacing: 0.04em;
  }
  .header-right {
    display: none;
  }

  /* Global Nav */
  .gnav a {
    font-size: 13px;
    padding: 12px 16px;
  }

  /* Main Visual */
  .main-visual {
    height: 220px;
  }
  .mv-content {
    padding: 0 16px;
  }
  .mv-content .catch {
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
  .mv-content .sub-catch {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
  .mv-badge {
    position: static;
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Content Area */
  .content-area {
    padding: 16px 12px;
    gap: 16px;
  }

  /* Section Title */
  .section-title {
    font-size: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  /* News List */
  .news-list li {
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }
  .news-date {
    min-width: auto;
  }
  .news-text {
    font-size: 13px;
  }

  /* Card Grid */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .card {
    padding: 16px 14px;
  }

  /* Pickup Section */
  .pickup-section {
    padding: 16px;
  }
  .pickup-quote {
    font-size: 13px;
    padding: 12px 14px;
  }

  /* Sidebar Banners */
  .sidebar-banner {
    padding: 14px 12px;
  }
  .sidebar-banner .banner-title {
    font-size: 13px;
  }

  /* Certification Section */
  .cert-section {
    padding: 24px 0;
  }
  .cert-section .inner {
    padding: 0 12px;
  }
  .cert-mark {
    width: 110px;
    height: 110px;
  }
  .cert-mark .mark-main {
    font-size: 14px;
  }
  .cert-mark .mark-text {
    font-size: 10px;
  }
  .cert-info h3 {
    font-size: 16px;
  }
  .cert-info p {
    font-size: 12px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-col h4 {
    font-size: 12px;
  }
  .footer-col a {
    font-size: 11px;
  }

  /* Page Header */
  .page-header {
    padding: 24px 0;
  }
  .page-header .inner {
    padding: 0 12px;
  }
  .page-header h1 {
    font-size: 19px;
    letter-spacing: 0.06em;
  }
  .page-header .en-title {
    font-size: 10px;
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: 8px 12px;
    font-size: 10px;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Article Body */
  .article-body {
    padding: 16px;
    line-height: 1.9;
  }
  .article-body h2 {
    font-size: 16px;
  }
  .article-body h3 {
    font-size: 14px;
  }
  .article-body blockquote {
    padding: 12px 14px;
    font-size: 12.5px;
  }

  /* Table responsive - horizontal scroll */
  .article-body .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px -16px;
    padding: 0 16px;
  }
  .article-body table {
    font-size: 11.5px;
    min-width: 480px;
  }
  .article-body table th,
  .article-body table td {
    padding: 7px 8px;
  }

  /* Exam Questions */
  .article-body .exam-question {
    padding: 14px;
  }
  .article-body .exam-question .choices {
    margin-left: 10px;
  }

  /* Voice Box */
  .article-body .voice-box {
    padding: 12px 14px;
  }

  /* Org Chart */
  .article-body .org-chart {
    padding: 14px;
    overflow-x: auto;
  }
  .article-body .org-chart .org-box {
    padding: 6px 12px;
    font-size: 11px;
  }
}
