.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
	right: 0;
    top: 0;
}

.modal__bg {
    background: #555;
    opacity: 0.7;
    height: 100vh;
    position: absolute;
    width: 100%;
	left: 0;
	right: 0;
    top: 0;
}

.modal__content {
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 90vh;
    max-width: 100%;
    overflow-y: auto;
    width: 90%;
}

@media (max-width: 767px) {
    .modal__content {
        max-height: 70vh;
        width: 90%;
        padding: initial;
    }
}

.js-modal-open {
    background-color: rgb(4, 56, 76);
    color: rgb(255, 255, 255);
    width: 15%;
    padding: 0.75rem 0.5rem 0.5rem;
    text-align: center;
    cursor: pointer;
}
@media (max-width: 767px) {
    .js-modal-open {
        padding: 1vw;
        margin-left: 1vw;
        width: 30%;
    }
}
.js-modal-reset {
    color: #000;
    width: 15%;
    padding: 0.75rem 0.5rem 0.5rem;
    text-align: center;
        cursor: pointer;

}
@media (max-width: 767px) {
    .js-modal-reset {
        padding: 1vw;
        width: 30%;
    }
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.fixed-layout {
    table-layout: fixed;
    width: 100%;
}

.fixed-layout table {
    border: initial;
}

.fixed-layout th {
    background-color: #002c70;
    color: #fff;
    padding: 10px;
    border-right: initial;
    border: 1px solid;
}

.fixed-layout td {
    border: 1px solid #dcdcdc;
    padding: 0.5em;
    text-align: center;
}

#id_search {
    margin-top: 10px;
}

.cfx-footer-bar {
    background: #fff;
    bottom: 0px;
    box-shadow: 0 -8px 16px rgba(0, 0, 0, .08);
    left: 0;
    padding: 1.25rem 1rem 1rem;
    position: fixed;
    width: 100%;
    z-index: 998;
    display: none;
}

.cfx-footer-bar__inner {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
}

.cfx-footer-bar__selection {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    width: 85%;
}
@media (max-width: 767px) {
    .cfx-footer-bar__selection {
        display: none;
    }
}

.cfx-footer-bar__select {
    border: 1px solid #04384c;
    font-size: .875rem;
    list-style: none;
    margin: 0;
    padding: 0.75rem 0.5rem 0.5rem;
    position: relative;
    width: 23%;
    text-align: center;
}

@media (max-width: 767px) {
    .cfx-footer-bar__select {
        padding: 0.75rem 0rem 0.5rem;
        width: 31%;
    }
}

.cfx-checkbox {
    float: right;
    padding: 10px;
    display: flex;
    /* margin-top: -15px; */
}

.cfx-checkbox__label {
    position: relative;
    top: -5px;
    left: 5px;
}

.cfx-modal__close {
    display: block;
    position: relative;
    right: -25px;
    top: -35px;
    float: right;
    font-size: 20px;
    border: solid 1px #999;
    padding: 0px 8px;
    border-radius: 50px;
        cursor: pointer;
}

@media (max-width: 767px) {
    .cfx-modal__close {
        display: none;
    }
}

.cfx-modal__close-sp {
    display: none;
}

@media (max-width: 767px) {
    .cfx-modal__close-sp {
        display: block;
        position: relative;
        top: 16vw;
        right: 5vw;
        float: right;
        background: #fff;
        font-size: 5vw;
        padding: 1vw 3vw;
    }
}

.cfx-footer-bar__count {
    display: none;
}

@media (max-width: 767px) {
    .cfx-footer-bar__count {
        align-items: center;
        display: flex;
    }
}
