*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    user-select:none;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: 'Noto Sans KR', sans-serif;
    /* background-color: aqua; */
}
body a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* 상단 헤더바 디자인 */
header{
    width: 980px;
    height: 140px;
    margin: 0 auto;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-color: hsla(0, 0%, 96%, 0.5);
    box-shadow: 0 2px 4px rgb(175, 175, 175);
}
header .bar{
    position: relative;
    width: 980px;
    margin: 0 auto;
}

/* 뒤로가기 아이콘 영역 */
.back{
    top: 40px;
    left: 20px;
    position: absolute;
}
.back img{
	height: 60px;
}
/* 헤더 텍스트 영역 */
header p{
    min-width: 128px;
    font-size: 40px;
    font-weight: 600;
    left: 50%;
    transform: translateX(-50%);
    line-height: 140px;
    position: absolute;
    /* background-color: bisque; */
}


/* 메인 전체 */
main{
    position: relative;
    top: 50px;
    width: 980px;
    /* height: 2219px; */
    margin: 0 auto;
    background-color: antiquewhite;
}


    /* 동의 디자인 */
    .consent{
        /* position: absolute; */
        float: left;
        width: 980px;
        /* height: 277px; */
        /* top: 1852px; */
        margin: 120px 0px 100px 0px;
        border-radius: 10px;
        box-shadow:2px 2px 4px rgba(0, 0, 0, 0.5);
        background-color: #f9f9f9;
    }
    .consent .text{
        width: 940px;
        margin: 20px;
		font-size:30px;
    }
    .consent .text h4{
        font-weight: 600;
    }