.sub_contents h2{
	font-size: 30px;
	text-align: center;
	margin: 30px auto;
}

.real_estate_list ul {
	margin-top: 5px;
}

.real_estate_list li:first-child {
	border-top: 1px solid #ddd; /* 각 리스트 항목 아래에 선 추가 */
}

.real_estate_list li {
	border-bottom: 1px solid #ddd; /* 각 리스트 항목 아래에 선 추가 */
	padding-bottom: 8px;
	padding-top: 8px; /* 각 리스트 항목의 하단 여백 추가 (선택 사항) */
	margin-bottom: 0px;
	margin-top: 0px;
}

.real_estate_list .real_estate_choose {
	padding: 5px;
	border: 2px solid #ddd;
	border-radius: 3px;
	overflow-y: auto;
	max-height: 400px;
}

select[readonly], input[type='text'][readonly], input[type='number'][readonly], input[type='checkbox'][readonly] {
	background-color: #ebebeb;
	color: #8d8d8d;
	pointer-events: none;
}

input[type="checkbox"] {
	display: inline-block;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	border: none;
	overflow: visible;
	-webkit-appearance: checkbox; /* Chrome, Safari, Opera */
	-moz-appearance: checkbox;    /* Firefox */
	appearance: checkbox;
}

.nowrap_div > div {
	display: inline-block;
}

.btn-all-agree{
	margin-right: 2px;
}

.btn-all-agree:focus{
	background-color: white;
	border: 1px soild black;
	outline: thin solid;
}

.submit_btn {
    display: block;
    background: #2a72fe;
    color: #fff;
    padding: 15px 25px;
    text-align: center;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
}