.small_txt1 {
    font-size: 15px !important;
    font-weight: 400 !important;
    padding-top: 0 !important;
}

.small_txt2 {
	font-size: 15px;
    padding-top: 20px;
    font-weight: bold;
}

.small_txt3 {
	font-size: 15px;
    padding-top: 10px;
    padding-left: 10px;
}

fieldset {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
	border:none;
	padding:0px;
}

.subtit {
 	font-size:16px;
	color:#444;
}

@container (max-width:500px) {
 	.subtit {
	 	font-size:15px;
	}

	dop {
	 	display:block;
		height:1;
	}
}

legend {
 	display:none;
}

fieldset p.privacy {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    width: 100%;
    1padding: 0rem 0 5rem;
    justify-content: space-evenly;
    align-items: center;
    gap: 4rem;
}

@container (max-width:500px) {
	fieldset p.privacy {
	 	flex-direction:column;
		gap:0.8em;
	}
}

fieldset p { margin-bottom:0px; margin-top:0px; }
fieldset p.desc {flex: 1 1 40%; }
fieldset .desc {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
    line-height: 2.2;
    border: 1px solid #888;
    border-radius: 0.5rem;
    color: #333;
    font-weight: 500;
    box-sizing: border-box;
}

.desc label { white-space:nowrap; }

.privacy label { white-space:nowrap;position:relative;display:inline-block; }
.desc input {
    flex: 8;
    margin-left: 0;
    line-height: 1;
    font-size: 18px;
}

[type=text] {
	border: none;
}

.caution {
	display: flex;
    flex-direction: column;
    gap: 4px;
    font-size:14px;
    color: #888;
    word-break: break-all;
	padding-left:0px;
}

.caution li {
	display:flex;
	
}

.caution li::before {
	display: inline-block;
    content: "※";
    font-size: inherit;
    font-weight: 400;
    padding-right: 0.5rem;
}

.privacy .input {
 	display:flex;
	gap:15px;
}

.privacy .input input[type=radio] {
 	display:none;
}


.privacy label::before {
  font-family: "Font Awesome 6 Free"; /* 폰트어썸 패밀리 */
  font-weight: 900;                   /* solid */
  content: "\f111";                    /* fa-check */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: #b3997a;           /* 배경색 */
  color: #fff;                         /* 체크 색상 */
  border-radius: 50%;                  /* 원형 */
  width: 20px;                         /* 원형 지름 */
  height: 20px;
  font-size: 12px;                     /* 체크 아이콘 크기 */
  margin-right:5px;
}

/* 선택된 상태 */
.privacy input:checked + label::before {
  content: "\f00c";             /* fa-check */
  background-color: #b3997a;    /* 배경색 */
  color: #fff;                  /* 체크 색상 */
}

/* 선택 안 된 상태 */
.privacy label.unchecked::before {
  content: "\f111";             /* fa-circle */
  background-color: transparent;/* 배경 없음 */
  color: #ccc;                   /* 테두리/아이콘 색 */
}
