/* learningBOX ロゴ用のスタイルや、その他微調整 */
.md-header__button.md-logo img,
.md-header__button.md-logo svg {
  height: 1.5rem; /* ヘッダーの高さに合わせる */
}

/* 左サイドバーのサイト名を非表示 */
.md-sidebar--primary .md-sidebar__scrollwrap .md-nav--primary > .md-nav__title {
  display: none;
}

/* フォントファミリーの設定 */
:root {
  --md-text-font:
    'Noto Sans JP', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo,
    sans-serif;
}

body {
  font-family:
    'Noto Sans JP', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo,
    sans-serif;
}

/* === YML Download Button ================================= */
.api-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.api-header h1 {
  margin-bottom: 0;
}
.yml-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border: 1px solid #1976d2;
  border-radius: 6px;
  background: #1976d2;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.yml-download-btn:hover {
  background: #1565c0;
  box-shadow: 0 2px 6px rgba(25, 118, 210, 0.35);
}
.yml-download-btn svg {
  flex-shrink: 0;
  position: relative;
  top: 1px;
}
