@charset "UTF-8";

.suggestion_apartments {
    position: absolute;
    width: 88%;
    top: 40px;
    max-height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    background-color: white;
    z-index: 10;
    list-style-type: none;
}

.suggestion_apartment.loading_item {
  pointer-events: none;
  color: gray;
  font-style: italic;
}

.suggestion_apartments li {
    margin: 5px 15px 0 15px;
    font-size: 15px;
}

.suggestion_apartments li:last-child {
    margin-bottom: 15px;
}

.suggestion_apartments li:hover {
    color: #0077cc;
    text-decoration: underline;
    cursor: pointer;
}

.suggestion_apartments li.active,
.suggestion_apartments li:focus {
    background-color: #dcdcdc;
    outline: none;
}

@media screen and (max-width: 760px) {
    .suggestion_apartments li {
        margin: 12px 15px 0 15px;
        font-size: 16px;
    }

    .suggestion_apartments li:first-child {
        margin-top: 10px;
    }

    .suggestion_apartments li:last-child {
        margin-bottom: 20px;
    }
}

.suggestion_apartments::-webkit-scrollbar {
  width: 10px; /* ← 太さ */
}

.suggestion_apartments::-webkit-scrollbar-thumb {
  background: #aaa;         /* スクロールポインタの色 */
  border-radius: 5px;
}

.suggestion_apartments::-webkit-scrollbar-track {
  background: #f0f0f0;      /* スクロールバーの背景 */
}