.search__form {
    width: 100%;
    max-width: 600px;
    height: 40px;
    display: flex;
    justify-content: right;
    margin-left: auto;
    margin-right: 100px;
    position: relative;
    top: -50px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
}

.select__group--genre,
.select__group--area {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100px;
    border: none;
    padding-left: 10px;
    background: white url("../images/arrow_down.png") no-repeat right center;
    background-size: 30px;
}

.select__group--genre select,
.select__group--area select {
    appearance: none;
    outline: none;
    border: none;
}

.select__group--area::after {
    content: "";
    background-color: #f5f5f5;
    width: 3px;
    height: 25px;
    margin-left: 40px;
}

.select__group--genre::after {
    content: "";
    background-color: #f5f5f5;
    width: 3px;
    height: 25px;
    margin-left: 20px;
}

.line__second {
    position: absolute;
    background-color: #f5f5f5;
    width: 3px;
    height: 25px;
    top: 7px;
    left: 32.5%;
}

.input__group {
    width: 100%;
    max-width: 400px;
    display: flex;
}

.search__icon {
    background-color: #fff;
    align-content: center;
}

.search__icon img {
    width: 25px;
    height: 25px;
}

.input__group input {
    width: 100%;
    max-width: 400px;
    border: none;
    outline: none;
}

.shop__contents {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    justify-content: center;
    gap: 15px;
    padding: 30px 100px;
    position: relative;
    top: -50px;
}

.shop__card {
    width: 100%;
    height: 340px;
    margin-right: 10px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.shop__card img {
    width: 100%;
    height: 50%;
}

.shop__name {
    margin-left: 20px;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
}

.shop__tag {
    margin-left: 20px;
    margin-top: 0;
    font-size: 14px;
}



.flex {
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 0;
}

.detail__link {
    max-height: 35px;
    text-decoration: none;
    background-color: blue;
    color: #fff;
    padding: 5px 15px;
    border: none;
    border-radius: 4px;
}

.review {
    display: flex;
    align-items: center;
    max-height: 35px;
    margin-left: auto;
    padding-right: 20px;
}

.review__star {
    font-size: 32px;
    color: gold;
}

.review__number {
    font-size: 14px;
    padding-top: 10px;
    padding-left: 5px;
}

.favorite__button {
    background-color: #fff;
    border: none;
}

.favorite__button img {
    width: 35px;
    height: 35px;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .search__form {
        position: relative;
        top: 0;
        width: 75%;
        max-width: 560px;
        margin: 0 auto;
    }

    .search__form input {
        width: 100%;
        max-width: 350px;
    }

    .shop__contents {
        position: relative;
        top: 0;
    }
}