/* HTML5 Boilerplate  */

/* font-face */

@font-face {
	font-family: "SCDream5";
	src: url("../fonts/SCDream5.ttf") format("truetype");
}

@font-face {
	font-family: "SCDream6";
	src: url("../fonts/SCDream6.woff") format("truetype");
}

@font-face {
	font-family: "Pretendard";
    font-weight:500;
	src: url("../fonts/Pretendard-Medium.woff") format("truetype");
}

@font-face {
	font-family: "Pretendard";
    font-weight:400;
	src: url("../fonts/Pretendard-Regular.woff") format("truetype");
}

@font-face {
	font-family: "Pretendard";
    font-weight:500;
	src: url("../fonts/Pretendard-SemiBold.woff") format("truetype");
}

@font-face {
	font-family: "Pretendard";
    font-weight:300;
	src: url("../fonts/Pretendard-Thin.woff") format("truetype");
}

@font-face {
	font-family: "Condensed";
    font-weight:300;
	src: url("../fonts/korail_Condensed.woff") format("truetype");
}

address,em {
    font-style: normal;
    padding: 0;
    margin: 0
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

img, video {
    max-width: 100%;
    border: 0;
    vertical-align: middle;
}

audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: top;
    box-sizing: border-box;
    color: #333;
    font-family: Pretendard,'sans-serif';
    font-weight:400;
    
}

ul, ol, dl, li {
    list-style: none;
}

a {
    vertical-align: top;
    text-decoration: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

table caption{
	text-indent: -99999px;
	position:absolute;
	top: -100px;
	left:0;
}

input, select, label {
    vertical-align: middle;
}

button, input, select, textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    *vertical-align: middle;
}

button, select {
    text-transform: none;
}

body {
    font-size: 100%;
    line-height: 1.2;
}

label {
    cursor: pointer;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    *overflow: visible;
}

textarea {
    overflow: auto;
    vertical-align: top;
}



address {
    font-style: normal;
}

/* ios */

input, textarea, button, select {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

input:disabled {
    -webkit-text-fill-color: inherit;
    opacity: 1;
}

/* flex */

.flex{
    display: flex;
}

.gap-10{
    gap:10px;
}

.algin-center{
    align-items: center;
}

