html {
    min-height: calc(100% - 4rem);
    height: auto;
}
.not-found {
    font-size: 1.6rem;
}
.shop-search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: calc(14rem + 3.2rem);
    padding-bottom: 30rem;
}
/* 768以上 */
@media screen and (min-width: 768px) {
    .not-found {
        font-size: 2.4rem;
    }
}
.search-form-label {
    display: block;
    position: relative;
    cursor: pointer;
}

.search-form-label::before {
    content: "";
    display: block;
    position: absolute;
    left: 1rem; /* Adjust this value to position the search icon */
    top: 50%;
    transform: translateY(-50%);
    width: 3rem; /* Adjust this value to set the width of the clickable area */
    height: 100%;
    z-index: 10;
}
