#our_base {
    width: 100%;
    padding-top: 128px;
    padding-bottom: 0;

    background-color: white;
}

.base_index {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    box-sizing: border-box;
}

.area_table {
    width: 100%;
    margin-bottom: 2rem;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.base_area_title {
    width: 100%;
    height: 61px;
    padding-top: 10px;
    margin: 0 0 2rem;

    font-size: 28px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;

    border-radius: 12px;
    border: #121518 1px solid;

    box-sizing: border-box;
}

.store_table {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.store {
    width: calc((100% - 1.5rem*3)/4);
    height: 311px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.store_img {
    width: 100%;
    height: 160px;

    border-radius: 1rem 1rem 0 0;
    border: 1px solid #C9CFD4;
    border-bottom: none;

    text-align: center;

    flex-grow: 0;
    flex-shrink: 0;
}

.store_img .img_content {
    border-bottom: none;
    border-radius: 1rem 1rem 0 0;
}

.store_discription {
    width: 100%;
    padding: 21px 1rem;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    border-radius: 0 0 1rem 1rem;
    border: 1px solid #C9CFD4;
    border-top: none;
}

.store_title {
    margin: 0;
    margin-bottom: 15px;

    font-size: 20px;
    font-weight: 600;
}

.store_info {
    width: 100%;

    display: flex;
    flex-direction: column;
    
    font-size: 14px;

    color: #515B65;
}

.store_train {
    margin: 0 0 0.25rem 0;
}

.store_address {
    margin: 0;
    height: 2.5rem;
}

@media screen and (max-width: 1189px) {
    #our_base {
        padding-top: 64px;
        padding-bottom: 0;
    }

    .store_table {
        flex-wrap: wrap;
    }

    .store {
        width: calc((100% - 1.5rem)/2);
        height: 311px;
    
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .store_bottom_margin {
        margin-bottom: 24px;
    }

    .store_address {
        height: 1.5rem;
    }
}

@media screen and (max-width: 810px) {
    .store_address {
        height: 3rem;
    }
}

@media screen and (max-width: 585px) {
    .base_area_title {
        margin-bottom: 1rem;
    }

    .store_table {
        flex-direction: column;
    }

    .store {
        width: 100%;
        height: 100%;
        margin-bottom: 1rem;
        
        flex-direction: column;
        align-self: stretch;
    }

    .store_img {
        width: 100%;
        height: 160px;
        flex-shrink: 0;
        flex-grow: 0;

        border-radius: 1rem 1rem 0 0;
        border: 1px solid #C9CFD4;
        border-bottom: none;
        box-sizing: border-box;
    }

    .store_img .img_content {
        width: 100%;
        /* height: 100%; */

        border-radius: 1rem 1rem 0 0;
        border-bottom: none;
    }

    .store_title {
        font-size: 18px;
    }

    .store_train,.store_address {
        font-size: 12px;
    }
    .store_address {
        height: auto;
    }

    .store_discription {
        width: 100%;
        height: 135px;
        padding-bottom: 1rem;

        align-content: stretch;
        align-self: stretch;

        border-radius: 0 0 1rem 1rem;
        border: 1px solid #C9CFD4;
        border-top: none;
        box-sizing: border-box;
    }

    .store_bottom_margin {
        margin: 0 0 1rem 0;
    }
}
