.center_align{margin: 0 auto;}


/*
#banner_lma_dv_intr{
    max-width: 950px; 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 10px;
    margin: 0 0 51px 107px;
}

#banner_lma_dv_intr > h1{color: #FFF; font-size: 45px; font-style: normal; font-weight: 800; line-height: 53px;}

#banner_lma_dv_intr > div{max-width: 732px; width: 100%;}

#banner_lma_dv_intr > div >p{color: #FFF; font-size: 18px; font-weight: 400; line-height: 21px;}

#banner_lma_dv_intr > div >p:first-child{margin-bottom: 24px;}

#banner_lma_dv_intr > div >p > span{font-weight: 700;}
*/

#banner_lma_dv_intr p{
    color:#FFF;
    font-size: 16px;
    font-weight: 400;

    margin: 0 auto 10px;
}

#CaseData{
    margin: 0 auto 10px;
}

#CaseData dt{
    font-family: 'Noto Serif', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ZLK-Green);
}

#CaseData dd{
    color: #FFF;

    font-size: 18px;
    margin-left: 5px;
    margin-right: 15px;
}

#CaseData dt,#CaseData dd{
    display: inline-block;
}



#form_section{
    max-width: 527px; 
    width: 100%; 
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 30px;
}

#form_section_inner{
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    flex: 1 0 0;
    border-radius: 20px;
    border: 1px solid #DDE2E5;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 13px 12.9px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(50px);
}

#form_section_inner > h4{color: #FFF; font-size: 28px; font-style: normal; font-weight: 700; line-height: 34px; margin: 0;}

#SubForm{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1 0 0;
}

.inpt_wrapper{
    display: flex;
    padding: 8px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #FFF;
}

.inpt_wrapper label{color: #FFF; font-size: 13px; font-style: normal; font-weight: 400; line-height: 14px;}

.inpt_wrapper > input {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    padding: 0;
    border: none;
    background-color: transparent;
    width: 100%;
}

.input_row{display: flex; gap: 10px;}

.inpt_wrapper > input:focus-visible {outline: none;}

.inpt_wrapper > input::placeholder{
    color: #999;
    font-style: italic;
    opacity: 1; 
}

#SubForm > p{    
    color: #FFF;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 12px;
    width: 100%;
    margin: 0;
}

#agree2_wrapper{display: flex; align-items: center; gap: 20px; align-self: stretch;}

#agree2{
    display: flex;
    width: 24px;
    height: 24px;
    padding: 2px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(63, 159, 127, 0.35);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    transition: all .2s ease;
    flex-shrink: 0;
}

#agree2:checked {background-color: #3F9F7F;}

#agree2:checked::after {
  content: "";
  position: absolute;
  top: 0;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}


#agree2_wrapper > label{color: #FFF; font-size: 11px; font-weight: 400; line-height: 12px;}

#agree2_wrapper > label > a{color: #FFF;}

#agree2_wrapper > label:hover{cursor: pointer;}

/*
#formBtn{
    min-width: 180px;
    display: flex;
    padding: 17px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background: #3F9F7F;
    border: none;
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    cursor: pointer;
}
*/

#formBtn{
    width:180px;
    padding: 15px;
}


@media only screen and (max-width: 768px) {

    .input_row {
        gap: 20px;
        flex-direction: column;
        width: 100%;
    }

    #CaseData{
        display: grid;
        grid-template-columns: max-content 1fr;
        column-gap: 10px;
        row-gap: 5px;
    }

    #CaseData dt{font-size:18px;}
}