@charset "utf-8";

/************************************************
 エリア検索
************************************************ */


/**
　サイドバー
 */
.sideCntBox .sideAreaSearch {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    width: 70%;
}
.sideCntBox .sideAreaSearch legend {
    padding: 0 10px;
}
.sideCntBox .sideAreaSearch .selected_condition {
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 250px;
}
.selected_condition > ul > li {
    display: flex;
    padding-left: 10px;
    padding-right: 5px;
    font-size: 13px;
    margin-bottom: 10px;
    white-space: nowrap;
}
.selected_condition > ul > li span {
    color: #fff;
    background-color: #878686;
    padding: 0 5px;
    border-radius: 5px;
}
.sideCntBox .sideCntButtonSearch .selected_footer {
/*
    display: flex;
    justify-content: space-between;
*/
}
.selected_footer button {
/*
    margin-left: 0;
    padding: 10px !important;
    min-width: 100px;
*/
}
.selected_footer .clear {
/*
    background-color: #fff;
    border: 2px solid #878686;
    color: #000;
*/
}
.selected_footer .clear:hover {
/*
    background-color: #878686;
*/
}

/**
　モーダル
 */

.modal {
    background: rgba(0, 0, 0, 0.3);
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150010;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.fade {
    transition: opacity 0.15s linear;
}
.modal.show .modal-dialog {
    transform: none;
}
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}
.modal-dialog {
    position: relative;
    max-width: 320px;
    width: auto;
    margin: 1.75rem auto;
    pointer-events: none;
    top: 60px;
    overflow-y: initial !important;
}
@media only screen and (max-width: 767px) {
    .modal-dialog {
        max-width: 420px;
    }
}
@media (min-width: 768px) {
    .modal-dialog {
        max-width: 650px;
    }
}
.modal .modal-content {
    position: relative;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 600px;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}
.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
    background-color: #252222;
    color: #fff;
    font-size: 15px;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
    overflow-y: auto;
}
.modal-body .body-block {
    margin-bottom: 40px;
}
.modal-body .pref-content {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 5px;
    padding-left: 2px;
}
@media (max-width: 678px) {
    .modal-body .pref-content {
        grid-template-columns: auto auto;
        font-size: 14px;
    }
}
.modal-body .pref {
    display: block;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid;
    background-color: bisque;
}
.modal-body .pref > span {
    position: relative;
    display: inline-block;
    font-weight: 800;
    font-size: 16px;
}
.modal-body .pref-footer {
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 10px;
}
.modal-body .pref-footer button {
    min-width: 40px;
    -webkit-appearance: none;
    display: inline-block;
    vertical-align: middle;
    padding: 15px 30px;
    color: #fff;
    background-color: #5c9dca;
    border: none;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 30px;
}
.modal button:disabled {
    cursor:not-allowed;
}
.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer .loader {
    align-items: center;
    justify-content: center;
    display: inline-flex;
}
.modal-footer button > img {
    display: none;
    width: 20px;
    height: 20px;
    margin: auto 2px;
}
.modal-footer > * {
    margin: 0.25rem;
}
.modal span, button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled)
{
    cursor: pointer;
}


