

	/*26.01.21 회원가입 약관동의 합치기 위한  css 추가*/
.member1 .mem1_con .agree-all label {
    display: flex;
    align-items: center;
}
.member1 .mem2_list2{ padding: 32px 0 20px; }
.member1 h2 {font-weight: 900;  padding-bottom: 12px; border-bottom: 1px solid #d4d4d4; text-align :left;}
.member1 h2 span { padding-left: 16px; font-size: 14px; }


/* 동의 체크박스 사이즈 키우기 */
.agree-box input[type="checkbox"], .agree-all input[type="checkbox"] {
	transform: scale(1.4); /* 여기서 조절 */
	margin-right: 4px;
}

/* 전체 동의 */
.agree-all {padding: 20px 0; border-bottom: 1px solid #ddd; font-size: 17px; }
.agree-all label {cursor: pointer;}

.agree-box {border-bottom: 1px solid #e1e1e1; padding: 20px 0;}
.agree-row {display: flex; justify-content: space-between; align-items: center;}	
.agree-title {font-weight: 500;font-size: 17px;	color: #222; margin-top: -10px; }

/* 토글 */
.agree-toggle {margin-top: 10px; right: 20.5rem; }
.agree-toggle::after {content: "[보기]"; font-size: 16px; color: blue;}
.agree-toggle.open::after {content: "[닫기]"; } /* 열렸을 때  */

/* 기존 약관 스타일 유지 */
.agree-box {border-bottom: 1px solid #e5e5e5; padding: 12px 0;}

/* 약관 내용 pc 사이즈  */
.agree-content {
	max-height: 230px;
	width: 768px; 
	box-sizing: border-box;
	overflow-y: auto;
	border: 1px solid #dcdcdc;
	border-radius: 4px;
	padding: 10px;
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	background: #fcfcfc;
	margin-top: -1px;
	transition: max-height 0.25s ease, opacity 0.2s ease;
	/* 기본은 닫힘 */
	display: none;
}	
/*26.01.21 add end */