/* search-form */
.search-form{
    width: calc(100% - 30px);
    margin: 15px auto;
    padding: 15px;
    border: 2px solid #aeaeae;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.search-form>select,
.search-form>button[type=button]
{
    width: 100%;
    border: 2px solid #082836;
    border-radius: 10px;
    padding: 5%;
    text-align: center;
    text-align-last: center;
    background-color: transparent;
    font-size: 20px;
    font-weight: 500;
}
.search-form>select[name='kaitori_type']{
    appearance: none;
    background-image:url(/common/search-form/images/caret-down-solid-full.png);
    background-position: top 50% right 10%;
    background-size: 10%;
    background-repeat: no-repeat;
}
.search-form>select[name='province']{
    appearance: none;
    background-image:
        url(/common/search-form/images/location.png),
        url(/common/search-form/images/caret-down-solid-full.png);
    background-position:
        top 50% left 10%,
        top 50% right 10%;
    background-size:
        7.5%,
        10%;
    background-repeat: no-repeat;
}
.search-form>button[type=button]{
    appearance: none;
    background-image:url(/common/search-form/images/magnifying-glass2.png);
    background-position: top 50% right 7%;
    background-size: 14%;
    background-repeat: no-repeat;
}
/* search-form */

@media (min-width: 768px){
    .search-form{
        max-width: 630px;
        padding: 0;
        border: 2px solid #fae2d5;
        gap: 20px;
        flex-direction: row;
        border-radius: 10px;
        overflow: hidden;
        background-image: linear-gradient(to bottom,transparent 0 10%,#aeaeae 10% 90%,transparent 90% 100%);
        background-size: 2px;
        background-repeat: no-repeat;
        background-position: top 50% left 38.5%;
    }
    .search-form>select,
    .search-form>button[type=button]
    {
        border-radius: 0;
        border: none;
        padding: 2%;
        outline: none;
        cursor: pointer;
    }
    .search-form>select[name='kaitori_type']{
        width: 38%;
        background-position: top 50% right 5%;
        background-size: 15%;
    }
    .search-form>select[name='province']{
        width: 38%;
        background-position:
            top 50% left 10%,
            top 50% right 5%;
        background-size:
            11%,
            15%;
    }
    .search-form>button[type=button]{
        width: 20%;
        background-image: url(/common/search-form/images/magnifying-glass-white.png);
        background-position: top 50% right 50%;
        background-size: 35%;
        font-size: 0;
        height: 65px;
        background-color: #ff5e3aff;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    /* search-form */
}