/* 초기화 start*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a {
	color: #222;
	text-decoration: none;
}
img {
	/* width: 100%;
	height: 100%; */
    border: none;
	vertical-align: middle;
	object-fit: cover;
}
ul, ol, li {
	list-style: none;
}
html{
	overflow:hidden;
    overflow-y:scroll;
}
html, body {
	padding: 0;
	margin: 0;
	width: 100%;
	font-family: 'Pretendard';
	font-size: 18px;
	font-weight: 400;
	word-break: keep-all;
	color: #222222;
	-webkit-text-size-adjust : none;  /* 크롬, 사파리, 오페라 신버전 */
	-ms-text-size-adjust : none;  /* IE */
	-moz-text-size-adjust : none;  /* 파이어폭스 */
	-o-text-size-adjust : none;  /* 오페라 구버전 */
}
html, body > * {
	letter-spacing: -0.03em !important;
}
body.no_scroll{
	overflow: hidden;
}
button {
	cursor: pointer;
	border: 1px solid transparent;
	font-family: 'Pretendard';
	font-size: 16px;
	color: inherit;
	background-color: transparent;
}
input{
	font-family: 'Pretendard';
	/* 아이폰 낮은버전 스타일 초기화 */
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}
select {
	position: relative;
	font-family: 'Pretendard';
	font-size: 16px;
	-webkit-appearance: none; /* 크롬, 사파리 기본 스타일 제거 */
	-moz-appearance: none; /* 파이어폭스 기본 스타일 제거 */
	appearance: none; /* 기타 브라우저 기본 스타일 제거 */
	background-image: url('/images/user/common/select_arrow.svg'); 
	background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
	color: #222;
}
textarea{
	color: #222;
	font-family: 'Pretendard';
	background: none;
}
caption {
	position: absolute;
    width:0px;
    height: 0px;
    overflow: hidden;
}
table{
	width:100%;
	table-layout:fixed;
	word-break:break-all;
	border-collapse:collapse;
	border-spacing:0;
}
i{
	font-style: normal;
}
*::after, *::before {
    box-sizing: border-box;
}
/* 초기화 end */