@charset "UTF-8";

html {
    background-color: #F5F3EE;
}
@media screen and (min-width: 900px){
    #EntryText {
        margin: 0 0 20px;
    }
    #EntryText {
        margin: 0 0 20px;
    }

    .EntryType {
        font-size: 25px;
        border-left: 1px solid #797979;
        padding: 10px 0 10px 20px;
        margin: 10px 0;
    }

    .DeptList {
        width: 100%;
    }

        .DeptList li {
            width: 100%;
            background-color: #FFFFFF;
            border: 1px solid #797979;
            margin: 0 auto 10px;
        }

            .DeptList li a {
                padding: 0 0 0 20px;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }

                .DeptList li a .CircleBt {
                    margin: 20px;
                }

    .DeptInformation {
        width: 100%;
        line-height: 30px;
    }

    #Department {
        font-size: 32px;
        font-weight: 600;
        margin: 20px 0;
    }

    #DeptInfo {
        font-size: 15px;
    }

    .FormButton {
        width: 250px;
        background-color: #000000;
        color: #FFFFFF;
        padding: 20px;
        border-radius: 10px;
        margin: 0 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .FormButtonBox {
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin: 0 0 15px;
    }

    .DescriptionText {
        font-size: 28px;
        font-weight: 600;
    }

    .FormButton:after {
        content: "\2193";
        font-size: 12px;
    }

    #DescriptionList {
        display: flex;
        flex-direction: column;
        margin: 0 0 100px;
    }

    .DpBox {
        width: 100%;
        font-size: 14px;
        display: flex;
        flex-direction: row;
        margin: 0 0 2px;
    }

    .DpTitle {
        width: 25%;
        font-weight: 600;
        background-color: #E0E0E0;
        padding: 2%;
        margin: 0 2px 0 0;
    }

    .DpValue {
        width: 75%;
        line-height: 27px;
        background-color: #FFFFFF;
        padding: 2%;
    }

    #ApplicationFormTitle {
        font-size: 25px;
        font-weight: 600;
    }

    #ApplicationFormSubTitle {
        font-size: 14px;
        color: #919191;
    }

    #ApFormInfoText {
        font-size: 14px;
        color: #024A00;
        line-height: 30px;
        margin: 15px 0;
    }

    .FormBox {
        width: 100%;
        display: flex;
        margin: 0 0 30px;
    }

    .FormTitle {
        width: 30%;
        padding: 20px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .FormMain {
        width: 70%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .FormMainC {
        width: 70%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        font-size: 16px;
    }

        .FormMain .InputText,
        .FormMainC .InputText {
            width: 100%;
            padding: 20px;
            border: 2px solid #878787;
            border-radius: 5px;
        }

        .FormMainC .InputText,
        .FormMainC select {
            margin: 0 0 20px;
        }

    .inputActive {
        background-color: #FFFFFF;
    }

    .FormMain input,
    .FormMainC input {
        font-size: 14px;
        appearance: auto !important;
    }

        .FormMain input:focus,
        .FormMainC input:focus,
        .MultiLine:focus {
            outline: none;
        }

    .RadioBox {
        color: #6D6D6D;
        margin: 0 30px 0 0;
    }

    .FormMainC select {
        width: 250px;
        padding: 20px;
        border: 2px solid #878787;
        border-radius: 5px;
        background-color: #FFFFFF;
        appearance: auto;
    }

    .MultiLine {
        height: 200px;
    }

    .FormInforBox {
        text-align: center;
        margin: 100px auto 0;
    }

        .FormInforBox a {
            text-decoration: underline;
        }

    #SendButton {
        width: 250px;
        background-color: #000000;
        color: #FFFFFF;
        border-radius: 5px;
        padding: 20px;
        text-align: center;
        margin: 50px auto 0;
        cursor: pointer;
    }
    /*form check CSS*/
    #FormCheckWindow {
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 5000;
        display: none;
    }

    #FormCheckInnerBox {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #FormCheckBox {
        width: 50%;
        height: 50%;
        background-color: #FFFFFF;
        border-radius: 5px;
        overflow-y: scroll;
        padding: 50px;
        font-size: 16px;
        color: #5C5C5C;
    }

    .FCHeaderText {
        margin: 0 0 20px;
    }

    .FCListBox {
        width: 100%;
        display: flex;
        align-items: center;
        margin: 0 0 20px;
    }

    .FCTitle {
        width: 30%;
    }

    .FCValue {
        width: 70%;
        background-color: #F7F7F7;
        border-radius: 5px;
        padding: 20px;
    }

    #FCButtonBox {
        display: flex;
        justify-content: center;
    }

    .FCButton {
        width: 200px;
        background-color: #000000;
        color: #FFFFFF;
        padding: 20px;
        border-radius: 5px;
        margin: 0 5px;
        text-align: center;
        cursor: pointer;
    }

    .FCCancel {
        background-color: #FFFFFF;
        border: 1px solid #6D6D6D;
        color: #6D6D6D;
    }

    #ApFormMessage {
        color: #B50000;
    }

    #SendFinished {
        font-size: 25px;
        margin: 20px 0;
        color: #024A00;
    }

    #SendMessage {
        line-height: 25px;
        font-size: 15px;
        color: #024A00;
    }
}



@media screen and (max-width: 899px) {
    #EntryText {
        margin: 0 0 20px;
        font-size: 11px;
    }

    #EntryText {
        margin: 0 0 20px;
    }

    .EntryType {
        font-size: 25px;
        border-left: 1px solid #797979;
        padding: 10px 0 10px 20px;
        margin: 10px 0;
    }

    .DeptList {
        width: 100%;
    }

        .DeptList li {
            width: 100%;
            background-color: #FFFFFF;
            border: 1px solid #797979;
            margin: 0 auto 10px;
        }

            .DeptList li a {
                padding: 0 0 0 20px;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }

                .DeptList li a .CircleBt {
                    margin: 20px;
                }

    .DeptInformation {
        width: 100%;
        line-height: 30px;
    }

    #Department {
        font-size: 32px;
        font-weight: 600;
        margin: 20px 0;
    }

    #DeptInfo {
        font-size: 15px;
    }

    .FormButton {
        width: 250px;
        background-color: #000000;
        color: #FFFFFF;
        padding: 20px;
        border-radius: 10px;
        margin: 0 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .FormButtonBox {
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin: 0 0 15px;
    }

    .DescriptionText {
        font-size: 28px;
        font-weight: 600;
    }

    .FormButton:after {
        content: "\2193";
        font-size: 12px;
    }

    #DescriptionList {
        display: flex;
        flex-direction: column;
        margin: 0 0 100px;
    }

    .DpBox {
        width: 100%;
        font-size: 14px;
        display: flex;
        flex-direction: row;
        margin: 0 0 2px;
    }

    .DpTitle {
        width: 25%;
        font-weight: 600;
        background-color: #E0E0E0;
        padding: 2%;
        margin: 0 2px 0 0;
    }

    .DpValue {
        width: 75%;
        line-height: 27px;
        background-color: #FFFFFF;
        padding: 2%;
    }

    #ApplicationFormTitle {
        font-size: 25px;
        font-weight: 600;
    }

    #ApplicationFormSubTitle {
        font-size: 14px;
        color: #919191;
    }

    #ApFormInfoText {
        font-size: 14px;
        color: #024A00;
        line-height: 30px;
        margin: 15px 0;
    }

    .FormBox {
        width: 100%;
        display: flex;
        margin: 0 0 30px;
        flex-direction: column;
    }

    .FormTitle {
        width: 100%;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .FormMain {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .FormMainC {
        width: 70%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        font-size: 16px;
    }

        .FormMain .InputText,
        .FormMainC .InputText {
            width: 100%;
            padding: 20px;
            border: 2px solid #878787;
            border-radius: 5px;
        }

        .FormMainC .InputText,
        .FormMainC select {
            margin: 0 0 20px;
        }

    .inputActive {
        background-color: #FFFFFF;
    }

    .FormMain input,
    .FormMainC input {
        font-size: 14px;
        appearance: auto !important;
    }

        .FormMain input:focus,
        .FormMainC input:focus,
        .MultiLine:focus {
            outline: none;
        }

    .RadioBox {
        color: #6D6D6D;
        margin: 0 30px 0 0;
    }

    .FormMainC select {
        width: 250px;
        padding: 20px;
        border: 2px solid #878787;
        border-radius: 5px;
        background-color: #FFFFFF;
        appearance: auto;
    }

    .MultiLine {
        height: 200px;
    }

    .FormInforBox {
        text-align: center;
        margin: 100px auto 0;
    }

        .FormInforBox a {
            text-decoration: underline;
        }

    #SendButton {
        width: 250px;
        background-color: #000000;
        color: #FFFFFF;
        border-radius: 5px;
        padding: 20px;
        text-align: center;
        margin: 50px auto 0;
        cursor: pointer;
    }
    /*form check CSS*/
    #FormCheckWindow {
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 5000;
        display: none;
    }

    #FormCheckInnerBox {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #FormCheckBox {
        width: 98%;
        height: 70%;
        background-color: #FFFFFF;
        border-radius: 5px;
        overflow-y: scroll;
        padding: 15px;
        font-size: 12px;
        color: #5C5C5C;
    }

    .FCHeaderText {
        margin: 0 0 20px;
    }

    .FCListBox {
        width: 100%;
        display: flex;
        align-items: center;
        margin: 0 0 20px;
    }

    .FCTitle {
        width: 30%;
    }

    .FCValue {
        width: 70%;
        background-color: #F7F7F7;
        border-radius: 5px;
        padding: 20px;
    }

    #FCButtonBox {
        display: flex;
        justify-content: center;
    }

    .FCButton {
        width: 200px;
        background-color: #000000;
        color: #FFFFFF;
        padding: 20px;
        border-radius: 5px;
        margin: 0 5px;
        text-align: center;
        cursor: pointer;
    }

    .FCCancel {
        background-color: #FFFFFF;
        border: 1px solid #6D6D6D;
        color: #6D6D6D;
    }

    #ApFormMessage {
        color: #B50000;
    }

    #SendFinished {
        font-size: 25px;
        margin: 20px 0;
        color: #024A00;
    }

    #SendMessage {
        line-height: 25px;
        font-size: 15px;
        color: #024A00;
    }
}

