/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
body {
	line-height: 1.5;
    box-sizing: border-box;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    line-height: 1.2;
}
p {
    font-size: 1rem;
    line-height: 1.6;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
    width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
caption {
    text-align: left;
    font-weight: normal;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    vertical-align: bottom;
    object-fit: cover;
}
img,
video,
audio {
    max-width: 100%;
    height: auto;
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
.sr_only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
#skip {
    position: relative;
    z-index: 99;
}
#skip > a {
    position: absolute;
    left: 0;
    top: -35px;
    display: block;
    width: 100%;
    height: 35px;
    background-color: #333;
    color: #fff;
    line-height: 35px;
    text-align: center;
}
#skip > a:focus,
#skip > a:active {
    top: 0;
}

/* ios대응 */
html {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
}
input,
button {
    appearance: auto;
    border-radius: 0;
}
select {
    appearance: none;
}
select::-ms-expand {
    display: none;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}
button,
input[type="button"],
input[type="submit"] {
    cursor: pointer;
}

/* input:valid,
textarea:valid,
select:valid {
    border-color: green;
}
input:invalid,
textarea:invalid,
select:invalid {
    border-color: red;
} */