/* サイト全体の設定 */
body {
  /* 英数字には Montserrat を、日本語には Noto Sans JP を優先適用 */
  font-family: 'Montserrat', 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
  
  /* フォントの太さを指定（読み込んでいる 300 か 400 がおすすめ） */
  font-weight: 400;
  
  /* 日本語を綺麗に見せるための微調整 */
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-feature-settings: "palt"; /* 文字詰め（プロポーショナルメトリクス） */
}

.search-focus-group:focus-within {
    border-color: #86b7fe !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

.custom-focus-group:focus-within {
    border-color: #80bdff !important;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-pagination nav > div.d-sm-flex {
    justify-content: flex-end !important;
}