* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

html,
body {
	width: 100%;
	height: 100%;
}

body {
	font-family: 'Verdana', 'malgun gothic';
	font-size: 1.4rem;
	color: #444;
	line-height: 1;
	letter-spacing: -0.04em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:active {
	/* color: inherit; */
	text-decoration: none;
}

table {
	table-layout: fixed;
	word-break: break-all;
	border-collapse: collapse;
	border-spacing: 0;
}

img,
fieldset,
hr {
	border: none;
}

ul,
li,
ol {
	list-style: none;
	margin: 0;
}

address,
em {
	font-style: normal;
}

img,
video,
canvas {
	height: auto;
}

legend {
	display: none;
}

button {
	background: none;
	cursor: pointer;
}


select {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: transparent;
	background-image: url(/assets/images/common/img_select_arrow_icon.svg);
	background-position: calc(100% - 20px) 50%;
	background-repeat: no-repeat;
}

select::-ms-expand {
	display: none;
}


.textAL {
	text-align: left !important;
}

.textAC {
	text-align: center !important;
}

.textAR {
	text-align: right !important;
}

.textCut {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.clearfix:after {
	clear: both;
	content: '';
	display: block;
}

.hide {
	display: none !important;
}

.objectFit>*:not(.none) {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.objectFitIE {
	background-size: cover;
	background-position: center center;
}

.objectFitIE>*:not(.none) {
	opacity: 0;
}

.row {
	display: block;
	width: 100%;
}

.row:after {
	content: '';
	display: block;
	clear: both;
}

.col {
	float: left;
}

.col_12 {
	width: 100%;
}

.col_11 {
	width: 91.66666667%;
}

.col_10 {
	width: 83.33333333%;
}

.col_9 {
	width: 75%;
}

.col_8 {
	width: 66.66666667%;
}

.col_7 {
	width: 58.33333333%;
}

.col_6 {
	width: 50%;
}

.col_5 {
	width: 41.66666667%;
}

.col_4 {
	width: 33.33333333%;
}

.col_3 {
	width: 25%;
}

.col_2 {
	width: 16.66666667%;
}

.col_1 {
	width: 8.33333333%;
}

.radioLabel {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
}

.radioLabel input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.radioLabel .box {
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	position: relative;
	border: 1px solid #ccc;
	vertical-align: middle;
	margin-right: 5px;
}

.radioLabel .box:before {
	content: '';
	width: 10px;
	height: 10px;
	background-color: #3e3f43;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -5px;
	margin-left: -5px;
	border-radius: 100%;
	display: none;
}

.radioLabel input:checked+.box {
	border: 1px solid #3e3f43;
}

.radioLabel input:checked+.box:before {
	display: block;
}

.radioLabel .txt {
	display: inline-block;
	vertical-align: middle;
	color: #333;
	font-size: 16px;
	letter-spacing: -0.8px;
	font-family: 'NotoKrL';
}

.checkLabel {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
}

.checkLabel input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.checkLabel .box {
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	position: relative;
	border: 1px solid #ccc;
	vertical-align: middle;
	margin-right: 3px;
}

.checkLabel .box:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 100%;
	background: url(/assets/images/common/img_check_icon.svg) no-repeat center center;
}

.checkLabel input:checked+.box {
	border: none;
	background-color: #3e3f43;
}

.checkLabel input:checked+.box:before {
	background: url(/assets/images/common/img_check_icon_white.svg) no-repeat center center;
}

.checkLabel .txt {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	font-family: 'NotoKrL';
	color: #333;
	line-height: 24px;
	letter-spacing: -0.75px;
}

img {
	display: block;
	max-width: 100%;
}