.shop_list {
    margin: 70px 0
}

.shop_list h2.pref {
    font-size: 24px;
    color: #333;
    line-height: 1.5;
    position: relative;
    padding-left: 0px;
    margin-bottom: 40px;
    display: inline-block;
    width: 100%;
    overflow: hidden
}

.shop_list h2.pref::before {
    content: '';
    position: absolute;
    left: 130px;
    top: 50%;
    width: 200px;
    height: 4px;
    background-color: #007747;
    transform: translateY(-50%)
}

.shop_list h2.pref::after {
    content: '';
    position: absolute;
    left: 330px;
    top: 50%;
    width: calc(100% - 20px);
    height: 4px;
    background-color: #ddd;
    transform: translateY(-50%)
}

.shop_list .industry-group {
    margin-bottom: 80px
}

.shop_list .industry-group h2 {
    background-color: #007747;
    color: white;
    padding: 16px;
    margin-top: 0;
    margin-bottom: 10px
}

.shop_list .shop-info {
    border-bottom: 1px solid #ddd;
    padding: 20px 10px;
    background-color: #fff;
    display: flex
}

.shop_list .shop-info p {
    margin: 0;
    padding: 0 10px;
    display: flex
}

.shop_list .shop-info .shop_name {
    width: 30%
}

.shop_list .shop-info .shop_zip {
    width: 15%;
    justify-content: flex-end
}

.shop_list .shop-info .shop_address {
    width: 40%
}

.shop_list .shop-info .shop_tel {
    width: 15%;
    justify-content: flex-end
}

.shop_list .select-box {
    margin-bottom: 20px
}

.shop_list .select-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px
}

@media screen and (max-width: 500px) {
    .shop_list h2.pref::before {
        font-size: 20px;
        left: 120px;
        width: 100px
    }

    .shop_list h2.pref::after {
        left: 220px
    }

    .shop_list .shop-info {
        display: flex;
        flex-wrap: wrap
    }

    .shop_list .shop-info .shop_name {
        width: 100%
    }

    .shop_list .shop-info .shop_zip {
        width: 100%;
        justify-content: flex-start
    }

    .shop_list .shop-info .shop_address {
        width: 100%
    }

    .shop_list .shop-info .shop_tel {
        width: 100%;
        justify-content: flex-start
    }
}