@charset "utf-8";




/* RESET CSS */
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-weight: normal;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a{
	text-decoration: none;
	color: #282828;
}





/* -------------------------------------------- 

						폰트 및 기본 설정

---------------------------------------------*/

/* 폰트 */
*{
	font-size: 16px; color: #333;
	font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
	letter-spacing: -0.04rem;
	line-height: 1.3;
}

@media screen and (max-width: 1024px){
	*{font-size: 15px;}
}

@media screen and (max-width: 820px){
	*{font-size: 14px;}
}

@media screen and (max-width: 600px){
	*{ font-size: 13px; }
}

@media screen and (max-width: 320px){
	*{ font-size: 12px; }
}


/* 컬러셋팅 */
:root{

	--color01: #0ca28b;
	--color02: #ccf0ea;
	--color03: #ceece8;

}

html, body{
	background-color: #fff;
}




/* 공통스타일 설정 */

.d_none{ font-size: 0; text-indent: -999999px; } /* 안보이는듯 보이는듯 안보이는 텍스트 처리 */


.wrapper{
	width: 1160px; margin: 0 auto;
}


.subTit{
	display: inline-block;
	font-size: 1rem; font-weight: 400;
}
	.subTit i{
		display: inline-block;
		width: 13px; height: 20px;
		background: url(/img/logo_small.png) no-repeat;
		background-size: cover;
		margin-right: 10px;
		vertical-align: middle;
	}


.tit{ 
	font-size: 2.8125rem;
	font-weight: 700;
	margin-top: 15px;
	line-height: 1.3;
}
	.tit span{
		font-size: inherit; font-weight: inherit;
		color: var(--color01);
		line-height: inherit;
	} 



.shadow{
	box-shadow: 0px 0px 17px rgba(23,134,117,0.2);
}


.mbBr{ display: none; }





/* -------------------------------------------- 

									반응형

---------------------------------------------*/
@media screen and (max-width: 1280px){
	.wrapper{ width: 90%; }
}



@media screen and (max-width: 820px){
	.tit{ font-size: 2.5rem; margin-top: 5px; }

	.subTit i {
		width: 10px; height: 16px;
		margin-right: 5px;
	}
}




@media screen and (max-width: 600px){
	.tit{ font-size: 2.125rem; }
	.subTit{ font-size: 0.875rem; }

	.mbBr{ display: block; }
}



@media screen and (max-width: 320px){
	.tit{ font-size: 1.875rem; margin-top: 2px; }
	.subTit i {
		width: 7px;
		height: 11px;
		margin-right: 2px;
	}
}