.sub-visual{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), url(../img/sub/notice/visual.jpg) lightgray 50% / cover no-repeat;
}

.notice1 .sub-title{
    text-align: center;
}

.form-wrap form{
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.form-box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.form-box .txt{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 20%;
}

.form-box .txt span{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 140%; 
}

.form-box .txt p{
    color: #111;
    font-size: 30px;
    font-weight: 700;  
    line-height: 140%; 
}

.form-box .content-wrap{
    width: 80%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    background-color: #fafafa;
}

.form-box .content-wrap.prev{max-height: 250px; overflow-y: auto}

.form-box .content-wrap .content{
    display: flex;
}

.form-box .content-wrap .content .name{
    width: 150px;
    position: relative;
    color: #111;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%; 
}

.form-box .content-wrap .content .name span{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    margin-left: 4px;
}

.radio-wrap{
    display: flex;
    align-items: center;
    gap: 15px;
}

.radio-btn input[type="radio"] {
    accent-color: var(--main-color)
}

.radio-btn label{
    cursor: pointer;
    color: #111;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%; 
}

.form-box .content-wrap .content input[type='text']{
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #DDD;
    background: #FFF;
    padding: 0 20px;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.form-box .content-wrap .content input::placeholder, .form-box .content-wrap .content textarea::placeholder{
    color: #B1B1B1;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%; 
}

.form-box .content-wrap .content textarea{
    width: 100%;
    height: 150px;
    border-radius: 5px;
    border: 1px solid #DDD;
    background: #FFF;
    padding: 13px 20px;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    resize: none;
}

.form-box .content-wrap .content .privacy{
    color: #111;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%; 
}

.file-box {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    overflow: hidden;
}

.form-box .content-wrap .content .file-box .upload-area {
    font-size: 16px;
    font-weight: 400;
    padding: 20px;
    resize: none;
}

.file-box > label {
    display: flex;
    width: 150px;
    height: 50px;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; 
    background-color: var(--main-color);
    cursor: pointer;
}

.form-box .content-wrap .content input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}

.form-btn{
    margin-left: auto;
    display: inline-flex;
    padding: 19px 40px;
    justify-content: center;
    align-items:center;    
    border-radius: 30px;
    background: var(--main-color );
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

.notice2 .sub-title{
    text-align: center;
}

.notice2 .content .box-wrap{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.notice2 .content .box-wrap .box{
    width: 50%;
    height: 360px;
    padding: 60px 0;
    text-align: center;
    border-radius: 20px;
    background: #FAFAFA;
}

.notice2 .content .box-wrap .box img{
    margin-bottom: 24px;
}

.notice2 .content .box-wrap .box p{
    color: #111;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 140%; 
    margin-bottom: 40px;
}


.notice2 .content .box-wrap .box .btn{
    display: inline-flex;
    padding: 29px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background-color: #ffffff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

.notice2 .content .box-wrap .box .btn:hover{
    background-color: var(--main-color);
    color: #FFF;
}

@media screen and (max-width:1280px) {
    .form-box .txt span{
        font-size: 18px;
    }
    .form-box .txt p{
        font-size: 24px;
    }
    .form-box .content-wrap{
        padding: 30px;
    }
    .form-box .content-wrap .content .name{
        min-width: 100px;
        font-size: 18px;
    }
    .form-box .content-wrap .content .name span{
        font-size: 18px;
    }
    .radio-btn label{
        font-size: 16px;
    }
    .form-box .content-wrap .content .privacy{
        font-size: 18px;
    }
    .sub-title p{
        font-size: 20px;
    }
    .notice2 .content .box-wrap .box{
        padding: 40px 0;
    }
    .notice2 .content .box-wrap .box p{
        font-size: 24px;
        margin-bottom: 30px;
    }
    .notice2 .content .box-wrap .box .btn{
        font-size: 16px;
        padding: 23px 34px;
    }
}

@media screen and (max-width:991px) {
    
    .form-box{
        flex-direction: column;
    }
    .form-box .txt{
        width: 100%;
        margin-bottom: 10px;
    }
    .form-box .content-wrap{
        width: 100%;
    }
    .form-box .content-wrap .content .name{
        min-width: 80px;
    }
}

@media screen and (max-width:768px) {
    .form-box .txt span{
        font-size: 16px;
    }
    .form-box .txt p{
        font-size: 20px;
    }
    .form-box .content-wrap{
        padding: 20px;
    }
    .form-box .content-wrap .content{
        flex-direction: column;
    }
    .form-box .content-wrap .content .name{
        min-width:auto;
        font-size: 16px;
        margin-bottom: 10px;
    }
    .form-box .content-wrap .content .name span{
        font-size: 16px;
    }
    .radio-btn label{
        font-size: 14px;
    }
    .form-box .content-wrap .content .privacy{
        font-size: 16px;
    }
    .form-box .content-wrap .content input[type='text']{
        height: 40px;
        font-size: 14px;
    }
    .form-box .content-wrap .content input::placeholder, .form-box .content-wrap .content textarea::placeholder{
        font-size: 14px;
    }
    .file-box > label{
        width: 120px;
        height: 40px;
        font-size: 14px;
    }
    .form-btn{
        font-size: 16px;
        padding: 11px 32px;
    }
    .sub-title p{
        font-size: 18px;
    }
    .notice2 .content .box-wrap{
        flex-direction: column;
    }
    .notice2 .content .box-wrap .box{
        width: 100%;
        padding: 40px 0;
        height: auto;
    }
    .notice2 .content .box-wrap .box p{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .notice2 .content .box-wrap .box .btn{
        font-size: 14px;
        padding: 20px 30px;
    }
    
}

@media screen and (max-width:600px) {
    .radio-wrap{
        flex-wrap: wrap;
    }

    .notice2 .content .box-wrap .box img{
        max-width: 50%;
    }
}