* {
	box-sizing: border-box;
	margin: 0;
}
html,body { 
	font-size: 16px;
	word-break: keep-all;
	font-family: 'Estedad', 'Pretendard', 'sans-serif';
	letter-spacing: -0.4px;
	color: #171615;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul, dl, dd, label {
	padding: 0;
	margin: 0;
	list-style: none;
}

h1,.h1 { font-size: 2.125rem; }/* 34px */
h2,.h2 { font-size: 2rem; }/* 32px */
h3,.h3 { font-size: 1.625rem; }/* 26px */
h4,.h4 { font-size: 1.375rem; }/* 22px */
h5,.h5 { font-size: 1.125rem; }/* 18px */
h6,.h6 { font-size: 1rem; }/* 16px */
h1,h2,h3,h4,h5,h6,p {
	font-weight: 600;
	line-height: 1.7;
	margin-bottom: 0;
}
.h1,.h2,.h3,.h4,.h5,.h6 {
	font-weight: 400;
	margin-bottom: 0;
	line-height: 1.7;
}
b,strong {font-weight: 600;}
p { font-size: 0.875rem; font-weight: 400; line-height: 1.75;}
em { font-size: 1.2em; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; text-decoration: none; }
dt { font-weight: 600; }
.semibold {
	font-weight: 500;
}
.text_center {
	text-align: center;
}

img {
	max-width: 100%;
}

input::-webkit-input-placeholder {
  color: #888888;
}
input:-ms-input-placeholder {
  color: #888888;
}
textarea::-webkit-input-placeholder {
  color: #888888;
}
textarea:-ms-input-placeholder {
  color: #888888;
}

.section {
	padding: 100px 0;
}
.last_section {
	padding-bottom: 160px;
}
.color_common {
	color: #986F52;
}
.color_gray {
	color: #888888 !important;
}
.btn_black {
	display: inline-block;
	padding: 20px 50px;
	background-color: #282625;
	color: #fff;
	transition: all 0.3s ease;
}
.btn_black:hover {
	background-color: #000;
	color: #fff;
}
.btn_border_gray {
	display: inline-block;
	padding: 20px 50px;
	border: 1px solid #ccc;
	background-color: #fff;
	color: #282625;
	transition: all 0.3s ease;
}
.btn_border_gray:hover {
	border-color: #282625 !important;
	color: #282625 !important;
}
.btn_gray {
	display: inline-block;
	padding: 20px 50px;
	border: 1px solid #999;
	background-color: #999;
	color: #fff;
}
.ico_plus {
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	vertical-align: middle;
	opacity: .4;
}
.ico_plus::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 7px;
	width: 2px;
	height: 100%;
	background-color: #1F1D1C;
}
.ico_plus::after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #1F1D1C;
}

.custom_text_chk > input {
	display: none;
}
.custom_text_chk > input + p {
	position: relative;
	width: 100%;
	padding: 13px 10px;
	border: 1px solid #DDDDDD;
	cursor: pointer;
}
.custom_text_chk > input + p:hover {
	color: #986F52;
	border: 1px solid #986F52;
	z-index: 1;
}
.custom_text_chk > input:checked + p {
	color: #fff;
	border-color: #986F52;
	background-color: #986F52;
	z-index: 1;
}
.custom_text_chk > input:disabled + p {
	color: #BBBBBB;
	background-color: #F8F8F8;
}


.custom_chk > input {
	display: none;
}
.custom_chk > input + span {
	display: inline-block;
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #2E2B29;
	vertical-align: middle;
	cursor: pointer;
}
.custom_chk > input:checked + span::before {
	content: '';
    display: block;
    position: absolute;
    top: 4px;
    right: 3px;
    width: 12px;
    height: 6px;
    border-left: 1px solid #2E2B29;
    border-bottom: 1px solid #2E2B29;
    transform: rotate(-45deg);
}
.custom_chk h6, .custom_chk p {
	display: inline-block;
	margin-left: 6px;
	vertical-align: middle;
}

.modal_close {
	position: relative;
	width: 20px;
	height: 20px;
	background-color: transparent;
	border: none;
}
.modal_close::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 50%;
	width: 1px;
	height: 20px;
	    margin-top: -10px;
	background-color: #171615;
	transform: rotate(45deg);
}
.modal_close::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 50%;
	width: 1px;
	height: 20px;
	    margin-top: -10px;
	background-color: #171615;
	transform: rotate(-45deg);
}
.mobile_br {
	display: none;
}