/*サジェストAPI欄*/
/*スマホ版はhtml/sp/suggest/cssにあるので修正は両方すること*/
.suggestarea {
    position: absolute;
    top: 100%; /* ヘッダーの高さに応じて調整 */
    left: 140px; /* 検索入力フィールドに隣接するように必要に応じて調整 */
    width: 55%;
    /* max-width: 590px; */ /* デザインに合わせた最大幅 未使用 */
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 5px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    overflow: hidden;
    color: black;
}

.suggestionsList {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.suggestionsList li {
    padding: 10px ;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #333; /* テキスト色を黒に設定 */
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer; /* カーソルをポインターにする */
}

.suggestionsList li:hover {
    background-color: #cde2ff; /* ホバー時の背景色 */
    text-decoration: underline; /* マウスオーバー時にアンダーラインを表示 */
}

.suggestionsList li.content {
    color: blue; /* コンテンツの文字色を青に設定 */
}