/* 右端にぴったり寄せ、幅は大きすぎない */
.site-search{
  margin:1rem 0;
  display:flex;
  justify-content:flex-end;
  width:100%;
}
.site-search .search-box{
  display:flex;
  align-items:center;
  gap:.5rem;
  width:100%;
  max-width:420px;
  margin:0;
}
@media (max-width: 991px){
  .site-search .search-box{ max-width:100%; }
}
.site-search .form-control{
  width:auto !important;
  flex:1 1 auto;
  min-width:200px;
  max-width:300px;
  padding:6px 10px;
  font-size:1em;
  height:auto;
}
.site-search button{
  padding:6px 12px;
  font-size:1em;
  white-space:nowrap;
}

/* 結果の見た目 */
.search-results .hit{ padding:.6rem 0; border-bottom:1px solid #eee; }
.search-results .hit:last-child{ border-bottom:none; }
.search-results .hit a{ font-weight:600; display:block; margin-bottom:.3rem; }
.search-results .hit p{ margin:0; line-height:1.6; }
.search-results .hit .snippet em,
.search-results .hit mark{
  background:#fff3cd;
  padding:0 .15em;
  font-style:normal;
}

/* 検索結果エリア全体 */
#searchWrap{
  display:none;
  margin-top:1em;
  margin-bottom:1em;
  box-shadow:none;
}
div#resultsCollapse,
div#results{
  margin:0;
}