@charset "utf-8";

html, body {
	position: relative;
	width: 100%;
	height: 100%;
	font-family: 'Pretendard';
	color: #1E2124;
	font-weight: 400;
	line-height: 1.5;
	word-break: keep-all;
	word-wrap: break-word;
	-webkit-tap-highlight-color : transparent;
	scroll-behavior: smooth;
}
html {
    /*iOS와 IE에서 기기 회전시에 사용자가 확대하지 않아도 글씨 크기가 재조정되는 것을 예방.*/
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;    
	font-size: 62.5%; /* 16px × 0.625 = 10px = 1rem으로 설정 */
}
body {
	background-color: #ffffff;
	font-size: 18px;
	overflow-x: hidden;
}
body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
a,
button,
select,
ul,
li,
span,
em,
label,
:before,
:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-text-size-adjust: none;
	font-family: inherit;
	line-height: 1.5;
	letter-spacing: inherit;
}
pre {
	font-family: inherit;
}
input,
textarea,
a,
button,
select,
span,
label,
:before,
:after {
	font-size: inherit;
	font-weight: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong {
	font-weight: 700;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
	display: block;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
img,
fieldset {
	border: 0
}
fieldset {
	min-width: 100%;
}
img {
	max-width: 100%;
	vertical-align: top;
}
ul,
ol {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
em,
address,
i {
	font-style: normal;
}
a,
button {
	transition: 0.2s ease-in-out;
}
a,
a:hover,
a:active,
a:focus {
	color: inherit;
	text-decoration: none;
}
/* a:visited {
	color: #279FD3;
} */
button,
select {
    text-transform: none;
}
button,
input[type="submit"],
input[type="button"] {
	overflow: visible; /* IE 8/9/10/11에서 `overflow` 속성값이 `hidden`으로 설정되어 있는 것을 수정 */
	margin: 0;
	background-color: transparent;
	border: none;
	-webkit-appearance: button;
	cursor: pointer;
	font: inherit;
	color: inherit;
}
button[disabled],
input[disabled] {
    cursor: default;
}
/* Firefox 4+에서 내부 `padding`과 `border`를 제거 */
button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 0;
}
textarea {
	resize: none;
}
label {
	cursor: pointer;
}
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
input[type="text"],
input[type="tel"],
input[type="password"],
input[type="file"],
input[type="number"],
input[type="email"],
input[type="date"],
input[type="search"],
textarea {
	-webkit-box-shadow: none;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-webkit-tap-highlight-color: transparent;
}
input[type="number"] {
	-moz-appearance: textfield;
	margin: 0;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type='text']::-ms-clear {
	display: none;
}
caption {
	position: static !important;
	margin: 0 !important;
}
table {
	table-layout: fixed;
	max-width: none;
	width: auto;
	min-width: 100%;
	border-collapse: collapse;
    border-spacing: 0;
}
[role="button"] {
	cursor: pointer;
}
.img img {
	min-width: 100%;
	max-width: 100%;
}
.img.bg-img {
	background-size: cover;
}
.hide {
	display: none !important;
}
/* .show {
	display: block !important;
}  */
.al {
	text-align: left !important;
}
.ac {
	text-align: center !important;
}
.ar {
	text-align: right !important;
}
.break-all {
	word-break: break-all;
}
.blind{
	position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/** scrollbar **/
::-webkit-scrollbar {
	width: 7px;
}
::-webkit-scrollbar-track {
	background-color: transparent;
}
::-webkit-scrollbar-thumb {
	background-color: #ccc;
}
::-webkit-scrollbar-button {
	display: none;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
	border-radius: 6px;
	border: solid 2px transparent;
}
::-webkit-scrollbar:horizontal {
	height: 7px;
}
