@charset "utf-8"; /* CSS Document */
/* 신청 폼 */
#application_form {
    padding: var(--sec_pd) 0 calc(var(--sec_pd) *1.5);
    background-image: var(--gradientCir);
    text-align: center;
	border-radius:calc(var(--br_xl) * 1.5) calc(var(--br_xl) * 1.5) 0 0; 
	box-shadow: 0px -8px 15px 0px rgba(0,0,0,0.15);
	
}

    /* 신청 폼 - 타이틀 */
    #application_form .sec_tit {
        position: relative;
    }

        #application_form .sec_tit .txt_ctr {
            color: #fff;
            text-align: left;
        }

            #application_form .sec_tit .txt_ctr .label {
                display: inline-flex;
                align-items: center;
                height: 50px;
                padding: 0 1.5rem;
                font-size: 1.4em;
                font-weight: 500;
                line-height: 1;
                border-radius: 500rem;
                border: solid 1px #ddd;
            }

            #application_form .sec_tit .txt_ctr .main_txt {
                margin: 1.5rem 0;
            }

            #application_form .sec_tit .txt_ctr .notice_txt {
                font-size: 1.1em;
                line-height: 1.6;
            }

                #application_form .sec_tit .txt_ctr .notice_txt span {
                    display: block;
                    font-size: 1.2em;
                    font-weight: 600;
                }

        #application_form .sec_tit .obj {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 35%;
			filter: drop-shadow(0px 2rem 0.5rem #00000040);
        }

    /* 신청 폼 - 폼 박스 */
    #application_form .form_box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2rem;
        background-color: #fff;
        border-radius: var(--br_r);
        padding: 3rem;
        font-size: 1.1em;
    }

    /* 신청 폼 - 필드셋 */
    #application_form [id$="fieldset"] {
        position: relative;
    }

        #application_form [id$="fieldset"] .fieldset_label {
            display: flex;
            width: 100%;
            text-align: left;
            margin-bottom: 0.5rem;
        }

    #application_form fieldset input, #application_form fieldset select {
        width: 100%;
    }

    /* 신청 폼 - 연락처 필드셋 */
    #application_form #tel_fieldset .input_ctr {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
        /*#application_form #tel_fieldset .input_ctr input, #application_form #tel_fieldset .input_ctr select { width: 28%; } */
        #application_form #tel_fieldset .input_ctr input, #application_form #tel_fieldset .input_ctr select, #application_form #tel_fieldset .input_ctr button {
            width: 23%;
        }

    #application_form #check_fieldset .input_ctr {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        #application_form #check_fieldset .input_ctr input {
            width: 75%;
        }

        #application_form #check_fieldset .input_ctr button {
            width: 23%;
        }


    /* 신청 폼 - 신청 금액 */
    #application_form #amount_fieldset::after {
        content: '만원';
        position: absolute;
        height: 56px;
        right: 1rem;
        bottom: 0;
        display: inline-flex;
        align-items: center;
    }

    /* 신청 폼 - 개인정보수집이용동의 */
    #application_form .agree_set {
        display: flex;
        align-items: center;
        color: #fff;
        margin-top: 2rem;
        font-size: 1.1em;
    }

        #application_form .agree_set a {
            color: #fff;
            font-weight: 700;
            margin-left: 0.5rem;
        }

    /* 신청 폼 - 신청 버튼 */
    #application_form .form_btn {
        margin-top: 3rem;
    }

        #application_form .form_btn:hover {
            background-color: var(--blue_02_hover);
        }

    #application_form .form_small_btn {
        background-color: var(--blue_01);
        height: 56px;
        padding: 0 !important;
        justify-content: center;
        border-radius: var(--br_m);
    }

        #application_form .form_small_btn:hover {
            background-color: var(--blue_01_hover);
        }



/* ==================== 해상도 1380px 이상 ==================== */
@media screen and (min-width: 1380px) {
}

/* ==================== 모바일 레이아웃 ==================== */

@media ( max-width: 1380px ) {

    /* 신청 폼 - 타이틀 */
    #application_form .sec_tit {
        margin-bottom: 0;
    }

        #application_form .sec_tit .obj {
            position: static; /*bottom: auto; right: 5%;*/
            max-width: 350px;
            width: 90%;
            margin-top: 2.5rem;
            margin-bottom: -1.5rem;
        }
}


@media ( max-width: 900px ) {

    /* 신청 폼 - 타이틀 */

	#application_form .sec_tit .obj { filter: drop-shadow(0px 1.5rem 0.5rem #00000033); }
    #application_form .sec_tit .txt_ctr {
        text-align: center;
    }

        #application_form .sec_tit .txt_ctr .label {
            height: 40px;
            font-size: 1.15em;
        }

        #application_form .sec_tit .txt_ctr .notice_txt {
            font-size: 1em;
        }

            #application_form .sec_tit .txt_ctr .notice_txt span {
                line-height: 1.4;
                margin-bottom: 0.5rem;
            }

    /* 신청 폼 - 폼 박스 */
    #application_form .form_box {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 1.5rem;
        padding: 3rem 1.5rem 2rem ;
    }

    /* 신청 폼 - 신청 금액 */
    #application_form #amount_fieldset::after {
        height: 48px;
    }

    /* 신청 폼 - 신청 버튼 */
    #application_form .btn_style_01 {
        margin-top: 2.5rem;
    }
}
