/* font */
@import url('https://webfontworld.github.io/pretendard/Pretendard.css');
@import url('https://webfontworld.github.io/NanumSquare/NanumSquare.css');

/* 변수 : core > main.js 파일 > color 검색 후 css변수 var 적용  */
*{
	--color1: #c19d87;
	--color2: #b2b296;
	--color3: #6d7a73;
	--color4: #aaaba6;
	--color5: #82987b;
	--color6: #d1b98b;
}
/* body {overscroll-behavior: none;} */

/* 클릭시 파란박스 방지 */
* {-webkit-tap-highlight-color:transparent}

/* 자동완성 색상 제거 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
	-webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* ios 대비 : 커서 색상 */
input,textarea {
    caret-color: #302e2c;
}

html {font-size:16px}
html,body {margin: 0; padding: 0;
	-webkit-overflow-scrolling: touch; /* ios 부드러운 스크롤링 */
}
h1, h2, h3, h4, h5, h6, p, a, span, em, strong, del, s, b, blockquote, br, i, u, dl, dt, dd, table, tr, thead, tbody, tfoot, th, td, img, object, form, fieldset, label, input, textarea, select, option, button, header, main, section, aside, footer, nav, article, div, ol, ul, li, pre {padding: 0; margin: 0; 
	font-family: 'pretendard',sans-serif;
	letter-spacing: -0.01rem; line-height: 1; font-weight: normal; font-size: 1rem;  box-sizing: border-box; word-break: keep-all;}

/* 태그속성 지우기 */
a, del, s, u {text-decoration: none;}
em, i {font-style:normal}
ol, ul, li {list-style:none;}
table, tr, td {border-collapse:unset;}
input {border:0; -webkit-appearance: none; -moz-appearance: none; appearance: none;caret-color: #6b6b6b}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button { -webkit-appearance: none; -moz-appearance: none; appearance: none; }
input[type='password']::-ms-reveal,
input[type='password']::-ms-clear {display: none;}
input::-ms-clear { display: none; }
select {-webkit-appearance: none;-moz-appearance: none; appearance: none;}
select::-ms-expand { display: none; }
button {cursor:pointer; background: none; border:0;}
pre { white-space: pre-line;}

/* IOS 선택 비활성화 */
h1, h2, h3, h4, h5, h6, p, div, img, span, a, em {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
}
.fc-icon-chevron-left:before {content: '';background: url(../img/prev_month.png) no-repeat;display: block; position: absolute; width: 1rem; height: 1rem;background-size: contain;background-position: center;    top: 50%;left: 50%;transform: translate(-50%,-50%);}
.fc-icon-chevron-right:before {content: '';background: url(../img/next_month.png) no-repeat;display: block; position: absolute; width: 1rem; height: 1rem;background-size: contain;background-position: center;    top: 50%;left: 50%;transform: translate(-50%,-50%);}


/* 클래스 속성 */
.hide, .off {display: none;}

/* 애드센스 css */

/* 반응형 */



/*
    1. 메인폰트 및 포인트 폰트 import형식으로 가져와 font에 넣기
    https://wess.tistory.com/category
    2. font-family의 ''에 메인 폰트 넣기
    3. 반응형 에 font-size가 10px인지 확인하기
*/