/* ==========================================================
   AINE ace サイト内検索 — サジェスト
   配置: /assets/css/aine-suggest.css
   ========================================================== */

/* サジェストラッパー */
.aine-suggest-wrap {
  position: relative;
}

/* サジェストドロップダウン */
.aine-suggest-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 120;
  max-height: 240px;
  overflow-y: auto;
  border: 1px solid #d7d7d7;
  border-radius: 0 0 4px 4px;
  background-color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.aine-suggest-dropdown[hidden] {
  display: none !important;
}

/* サジェスト候補アイテム */
.aine-suggest-item {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  color: #333;
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.aine-suggest-item:hover,
.aine-suggest-item.is-active {
  background-color: #f0f7ff;
  color: #000;
}

.aine-suggest-item:focus {
  outline: none;
  background-color: #f0f7ff;
}

/* ヘッダー検索ボックス用の z-index 調整 */
.search_box_wrap .aine-suggest-dropdown {
  z-index: 10001;
}
