@charset "utf-8";

:root {
	--pre: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
    --baby: "Babylonica", cursive;
    --mont: "Montaga", serif;
	--main-color: #918875;
	--sub-color: ;

	/*font-size*/
    --f8: 0.5rem;
    --f10: 0.63rem;
    --f12: 0.75rem;
    --f13: 0.81rem;
    --f14: 0.88rem;
    --f15: 0.94rem;
    --f16: 1rem;
    --f18: 1.13rem;
    --f20: 1.25rem;
    --f22: 1.38rem;
    --f24: 1.5rem;
    --f28: 1.75rem;
    --f32: 2rem;
    --f36: 2.25rem;
    --f40: 2.5rem;
    --f46: 2.88rem;
    --f48: 3rem;
    --f64: 4rem;
}

/*---------------------------------------------------*/
/*       Noto Sans KR(Korean) google webfont         */
/*---------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

/* Babylonica font */
@import url('https://fonts.googleapis.com/css2?family=Babylonica&family=Montaga&family=Noto+Sans+KR:wght@100..900&family=Noto+Serif+KR:wght@200..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
/*---------------------------------------------------*/
/*---------------------------------------------------*/
/*                  Reset Common                     */
/*---------------------------------------------------*/
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;
}
body {
	font-family: 'Noto Sans KR', sans-serif;
}
ol, ul {
	list-style: none;
}
a{
	text-decoration: none;
	color: inherit;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*{margin:0; padding:0;font:inherit; color:inherit;}
body, html {height:100%}
canvas, img, picture, svg, video {display:block; /*max-width:100%*/}
button, select, textarea {font:inherit}
h1, h2, h3, h4, h5, h6, p {overflow-wrap:break-word}

/*button*/
input[type="button"],button {cursor:pointer; -webkit-border-radius:0; -webkit-appearance:none;border: 0; outline: 0; border-image: none;}
input[type="radio"]{ vertical-align: middle; margin-top: -2px;}
textarea { resize:none; word-wrap:break-word; outline:none;}

/* select 변경 */
select::-ms-expand {display:none;}
select{
	-webkit-appearance: none; /* 화살표 없애기 for chrome*/ 
	-moz-appearance: none;    /* 화살표 없애기 for firefox*/ 
	appearance: none;         /* 화살표 없애기 공통*/ 
	outline: none;
	border: none;
	box-shadow: none;
	display: inline-block;
}

/*input*/
input:focus{outline: none;}
input[type=text], input[type=number], input[type=password]{
    width: 100%;
    height: 60px;
    background: #f4f4f4;
    border: 0;
    text-indent: 20px;
    font-size: 18px;
}
input::placeholder{
	color: #acacac;
    font-size: 18px;
    font-weight: 300;
}
input[type=text]:focus::placeholder, input[type=number]:focus::placeholder, input[type=password]:focus::placeholder{
	color: transparent;
}
/*input 화살표 제거*/
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {-webkit-appearance: none;margin: 0;}