html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
* {box-sizing: border-box;}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
em {
	font-style: normal;
}
a {
	color: inherit;
	text-decoration: none;
}
b {font-weight: 600;}
strong {font-weight: 700;}
select {
	-moz-appearance:none; /* Firefox */
	-webkit-appearance:none; /* Safari and Chrome */
	appearance:none;
}
select:focus {outline: 0;}
br.mobile_br {
	display: none;
}

body {
	color: #141414;
	font-size: 16px;
	font-family:'Pretendard';
	font-weight: 400;
	line-height: 24px;
	/*1.5 24px기본*/
	letter-spacing: -0.16px;
	word-break: keep-all;
}

h1 {
	font-size: 3.25rem;
	line-height: 4.375rem;
	/* 	52px */
	/* 	line 70px */
}
h2 {
	font-size: 2.625rem;
	line-height: 4.125rem;
	/* 	42px */
	/* 	line 66px */
}
h3 {
	font-size: 2.25rem;
	line-height: 3.5rem;
	/* 	36px */
	/* 	line 56px */
}
h4 {
	font-size: 1.75rem;
	line-height: 2.75rem;
	/* 	28px */
	/* 	line 44px */
}
h5 {
	font-size: 1.25rem;
	line-height: 1.875rem;
	/* 	20px */
	/* 	line 32px */
}
h6 {
	font-size: 1.125rem;
	line-height: 1.875rem;
	/* 	18px */
	/* 	line 30px */
}
small {
	font-size: 1.14rem;
}

h1,h2,h3,h4,h5,h6 { font-weight: 700;}


/* CONTAINER */
.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1176px;
    padding-left: 12px;
    padding-right: 12px;
}

.container.xs {
    max-width: 440px;
}

.container.sm {
    max-width: 840px;
}

.container.lg {
    max-width: 1376px;
}

.container.xl {
    max-width: 1440px;
}

.container.xxl {
    max-width: 1680px;
}


.icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
	background-size: 24px;
	background-position:center;
	background-repeat: no-repeat;
}
.icon.lg {
	width: 32px;
	height: 32px;
	background-size: 32px;
}
.icon.sm {
	width: 16px;
	height: 16px;
	background-size: 16px;
}

.icon.arrow_left_white {
	background-image: url('/public/icon/arrow_thin_white.svg');
}
.icon.arrow_top_white {
	background-image: url('/public/icon/arrow_thin_white.svg');
	transform: rotate(90deg);
}
.icon.arrow_right_white {
	background-image: url('/public/icon/arrow_thin_white.svg');
	transform: rotate(180deg);
}
.icon.arrow_down_white {
	background-image: url('/public/icon/arrow_thin_white.svg');
	transform: rotate(270deg);
}

.icon.arrow_left_black {
	background-image: url('/public/icon/arrow_thin_black.svg');
}
.icon.arrow_top_black {
	background-image: url('/public/icon/arrow_thin_black.svg');
	transform: rotate(90deg);
}
.icon.arrow_right_black {
	background-image: url('/public/icon/arrow_thin_black.svg');
	transform: rotate(180deg);
}
.icon.arrow_down_black {
	background-image: url('/public/icon/arrow_thin_black.svg');
	transform: rotate(270deg);
}