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, 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;
	vertical-align: baseline;
	box-sizing:border-box;
	font-family: var(--font-basic);
	/* color:var(--gray-color100); */
    letter-spacing: -0.07em;
    /*세로모드에서 가로모드로 전환할때 텍스트가 약간 커지는 현상 방지*/
	margin:0; padding:0;border:0;vertical-align:baseline;-webkit-text-size-adjust:none;
  	text-decoration:none;
	-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
 footer, header, hgroup, menu, nav, section {
    display: block; 
    font-family: var(--font-basic);
}
body {
  line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
	box-sizing:border-box;
}
blockquote:before, blockquote:after,q:before, q:after {
	content: '';
	content: none;
	box-sizing:border-box;
}
table {
    table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
}
button, a {
  padding:0; margin:0; background:transparent; border:0; outline:0; cursor:pointer; font-size:inherit; font-family: var(--font-basic);
  color: inherit;
}
textarea, input[type="text"],input[type="tel"],input[type="email"], select {
	padding:0; margin:0; outline:0; font-size:inherit; font-family: var(--font-basic); border:1px solid #d2d2d2;
	-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding:0 10px;
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
	-webkit-border-radius: 0;
	box-shadow: none;
}
textarea {
    resize:none;
}
select {
    background: #ffffff url(../img/common/ico_select_arrow.svg) right 20px center no-repeat;
}
select::-ms-expand {
    display: none;
}
input::placeholder {
    color:#999999;
}

.checkbox input[type="checkbox"] {
	display:none !important;
	width:0;
	height:0;
}
.checkbox input[type="checkbox"] + label {
	display:inline-block;
	padding-left: 30px;
	line-height: 1.8;
	color:#828382;
	background-position: left top 4px;
	background-repeat: no-repeat;
	background-image: url('../img/common/ico_checkbox_off.svg');
    cursor:pointer;
}
.checkbox input[type="checkbox"]:checked + label {
	background-image: url('../img/common/ico_checkbox_on.svg');
}

/* input[type="radio"], input[type="checkbox"] {
	-webkit-appearance: none; -moz-appearance: none; appearance: none;
}

input[type=date]::-webkit-inner-spin-button, .top_wrap .input_wrap input[type=date]::-webkit-outer-spin-button {
	-webkit-appearance: none; -moz-appearance: none; appearance: none;
} */

address, em, i {
    font-style: normal;
}

img {
    max-width: 100%;
}


@media screen and (max-width:720px) {
    .checkbox input[type="checkbox"] + label {
        font-size: 14px;
        background-position: left top 3px;
    }
}
