/* ---------------------------------------
	root
--------------------------------------- */
:root {
	font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	font-size: min(calc(10 / (393 / 100) * 1vw), 11.5px);
	word-break: keep-all;
	font-weight: 400;
/* 	--font-800: "Pretendard-Black", sans-serif;
	--font-700: "Pretendard-Bold", sans-serif;
	--font-600: "Pretendard-SemiBold", sans-serif;
	--font-500: "Pretendard-Medium", sans-serif;
	--font-400: "Pretendard-Regular", sans-serif;
	--font-300: "Pretendard-Light", sans-serif;
	--font-200: "Pretendard-Thin", sans-serif;
	 */
	--bbb-green: #0afd1c;
	--bg-light-gray: #f5f5f5;
	--color-primary: #5d00ff;
	--etc-color-light-violet: #eadaff;
	--bg-light-gray2: #f9f9f9;
	/* 251230 ck editor5 커스텀 밑줄 색상 */

	--border-light-gray: #e1e3e1;

	/* S: 퍼스트몰 색상 */
	--khaki: #6e7b47;
	/* 메인 카키 */
	--khaki-700: #5a663a;
	/* 진한 카키 */
	--khaki-100: #f2f5ea;
	/* 연한 배경 */
	--text: #1a1a1a;
	--muted: #62686f;
	--line: #e7ecef;
	--bg: #fff;
	--chip: #f8faf6;
	/* E: 퍼스트몰 색상 */

	--lc-gap-l: 6rem;
	--lc-gap-m: 4rem;
	--lc-gap-hz: 1.6rem;
	--lc-gap-hz-half: 1.2rem;
	--lc-gap-halftext: 2rem;

	--lc-tit-gap: 2.5rem;
	--pd-in: 1.6rem;
	--pd-in2: 24px;
	/* 251230 ck editor5 커스텀 밑줄 색상 */

	--rem-max: 11.5;
	/* px가 아니라 "숫자"로 저장 */

	--border-radius-m: 1.2rem;

	--paging-top: 5rem;
}

/* ---------------------------------------
	reset
--------------------------------------- */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

form,
fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

legend {
	margin: 0;
	padding: 0;
	font: inherit;
	color: inherit;
}

label {
	margin: 0;
	padding: 0;
	font: inherit;
	color: inherit;
	cursor: pointer;
}

input,
textarea,
select,
button {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	font: inherit;
	color: inherit;
	box-sizing: border-box;
	outline: none;
}

textarea {
	box-sizing: border-box;
	padding: 6px 9px;
	width: 100%;
	font-size: 13px;
	line-height: 1.4;
	color: #333;
	border: 1px #ccc solid;
	border-radius: 2px;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
	cursor: pointer;
	background: none;
}

/* autofill 배경 제거 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
	box-shadow: 0 0 0 1000px #fff inset !important;
	-webkit-text-fill-color: #000 !important;
	transition: background-color 9999s ease-in-out 0s;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea {
	resize: none;
}

a {
	color: inherit;
	text-decoration: none;
}

ol,
ul,
li {
	list-style: none;
}

picture img,
picture video,
figure img,
a img,
a video,
label img,
button img,
p img,
div img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}

input:focus {
	outline: none;
	border-color: var(--color-primary) !important;
}

.check_inp {
	display: none;
}

.check_inp:focus {
	outline: none;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}