@charset "UTF-8";
.dialog{
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-size: 1em;
}

.dialog_header{
    width: 100%;
}

.dialog_header_form_style{
    padding: 1em 0 2em;
}

.dialog_header_title{
    width: fit-content;
    height: fit-content;
    margin: 0 auto;
    font-size: 1.3em;
}

.dialog_body{
    width: 100%;
    height: fit-content;
    margin: 0 auto;
    padding: 0 1em;
}

.dialog_form_values_group{
    width: 100%;
    font-size: 1em;
}

.dialog_form_textarea_group{
    margin: 1em 0;
    width: 100%;
    font-size: 1em;
}

.dialog_form_textarea{
    border: solid 1px rgb(197, 197, 197);
    font-size: 1.0em;
    padding: 0.5em 1em;
    max-height: 10em;   
    overflow: hidden scroll;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    word-break: break-word;
}

.dialog_form_values_title{
    background-color: var(--bgcolor-main);
    color: black;
    padding: 0.5em 1em;
    font-size: 1.0em;
}.dialog_form_values_title > div{
    margin: auto 0;
}

.dialog_form_value{
    border: solid 1px rgb(197, 197, 197);
    font-size: 1.0em;
}.dialog_form_value > *{
    margin: auto 0;
    height: fit-content;
    width: 100%;
    text-indent: 1em;
}

.dialog_footer{
    position: absolute;
    transform: translate(-50%, -100%);
    top: 100%;
    left: 50%;
    width: 100%;
    height: fit-content;
}

.dialog_bottom_group{
    display: flex;
    width: 100%;
    padding: 0.5em;
}.dialog_bottom_group > div{
    width: 50%;
    padding: 0.7em;
    text-align: center;
    color: white;
    font-weight: bold;
}.dialog_bottom_group > div:nth-child(1){
    margin: auto 0.5em auto auto;
}.dialog_bottom_group > div:nth-child(2){
    margin: auto auto auto 0.5em;
}

.dialog_scroll{
    overflow: hidden auto;
}

.dialog_button_style{
    border-radius: 2em;
}.dialog_button_style::after{
    content:"▲";
    position: absolute;
    top: 50%;
}.dialog_button_style > div{
    padding: 0 0 0.1em;
}
    
.dialog_success{
    background-color: rgb(234, 85, 71);
    position: relative;
}.dialog_success::after{
    transform: translate(50%, -50%) rotate(90deg);
    right: 10%;
}

.dialog_cancel{
    background-color: rgb(128, 128, 128);
    position: relative;
}.dialog_cancel::after{
    transform: translate(-50%, -50%) rotate(-90deg);
    left: 10%;
}

.dialog_field{
    background-color: white;
}

.dialog_title{
    padding: 0.7em 10%;
    font-size: 1.5em;
}

.dialog_badge-required {
    background-color: white;
    border-radius: 5px;
    border: 1px solid #e4007f;
    color: #e4007f;
    padding: 0.1em 1em;
    font-size: 0.7em;
    height: fit-content;
}

.dialog_form_values_container{
    margin: auto;
}

.dialog_progress{
    margin: 2em auto 2.5em;
}
/* PC */
@media screen and (min-width: 769px) {
    .dialog_field{
        width: 90vw;
        height: 90vh;
        max-width: 900px;
        max-height: 800px;
    }

    .dialog_form_values_group{
        margin: 1em 0;
        height: 3em;
    }

    .dialog_form_textarea_group{
        width: 100%;
        height: fit-content;
        font-size: 1em;
    }

    .dialog_form_values_title{
        width: 15em;
    }

    .dialog_form_textarea_title{
        width: 100%;
        height: 100%;
    }

    .dialog_form_value{
        height: 100%;
        flex: 1;
    }

    .dialog_form_textarea{
        flex: 1;
    }
}
/* SP */
@media screen and (max-width: 768px) {
    .dialog_field{
        width: 100vw;
        height: 100vh;
    }

    .dialog_form_values_group{
        margin: 1em 0 0;
        height: 6em;
    }

    .dialog_form_textarea_group{
        width: 100%;
        font-size: 1em;
    }

    .dialog_form_values_title{
        width: 100%;
        height: 3em;
    }

    .dialog_form_textarea_title{
        width: 100%;
        height: 3em;
    }

    .dialog_form_textarea{
        width: 100%;
        height: 100%;
        min-height: 3em;
    }

    .dialog_form_value{
        height: 50%;
        width: 100%;
    }

}