.input-root-area {
    position: fixed;
    top: 15px;
    left: 30%;
    width: 30%;
    background-color: white;
    border-radius: 40px;
}

.search-input {
    display: flex;
    justify-items: start;
    align-items: center;
    background-color: white;
    z-index: 9999; /* バス停ポップアップより前面 */
    border-radius: 40px;
    border: 1px solid black;
    width: 100%;
    height: 50px;
    min-width: 175px;
}

.input-text-area {
    border: none;
    padding: 0;
    font-size: 20px;
    width: calc(50% + 30px)
}

.input-text-area:focus{
    border: none;
    outline: none;
}

.search-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.dropdown-area {
    overflow-y: scroll;
    height: 300px;
    display: none;
}

.dropdown-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    padding-left: 20px;
}

.dropdown-img {
    height: 50px;
    width: auto;
}

.dropdown-button {
    border: none;
    background-color: white;
    font-size: 20px;
}