/* supportのCSS */
/* パーツ----------------------------------------- */
.el_sendModal {
    display: none;

    position: fixed;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--custom-white);
    max-height: 90vh;
    padding: 75px 50px 60px;
    border-radius: 6px;
}

.el_sendModal_container {
    max-height: 80vh;
    display: flex;
    overflow-y: scroll;
    flex-direction: column;
    padding-right: 5px;

    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.el_sendModal_container::-webkit-scrollbar {
    display: none;
}

.el_sendModal_container_ttl {
    font-size: 24px;
    text-align: center;
}
.el_sendModal_container_text {
    line-height: 30px;
}

.el_sendModal_batsu {
    position: absolute;
    cursor: pointer;
    right: 10px;
    top: 10px;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    color: var(--custom-gray-6);
}

/* レイアウト------------------------------------- */
.ly_form {
    border-radius: 6px;
    border: solid 1px var(--custom-gray-5);
}
.ly_form_top {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 45px;
}
.ly_form_bottom {
    display: flex;
    background-color: var(--custom-gray-11);
    height: 130px;
    justify-content: center;
    align-items: center;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    padding-left: 20px;
    padding-right: 20px;
}

.ly_form_top_formUnit {
    display: flex;
    gap: 60px;
}

.ly_form_top_formUnit_left {
    min-width: 210px;
    padding-left: 30px;
}

@media screen and (max-width:1080px) {
    .ly_form_top {
        padding-left: 20px;
        padding-right: 20px;
    }
    .ly_form_top_formUnit {
        flex-direction: column;
        gap: 20px;
    }
    
    .ly_form_top_formUnit_left {
        padding-left: 0;
    }
}
