/* common class */

:root 
{
    --main: #E76203;
    --black: #111;
    --gray:#767676;
}

/* header */

.footer 
{
    width: 100%;    
    display: flex;
    justify-content: center;
    box-sizing: content-box;
    border-bottom: 1px solid #e5e5ec;
    background: #222;   
}

.footerInner 
{
    width: calc((1500 / 1920)* 100%);
    height: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    padding: 24px 0;
    gap: 24px 0;
}

.footerInner .logo 
{
	display: flex;
    align-items: center;
    justify-content: center;
      z-index:1;
}

.footer_con_wrap 
{
    color: #fff;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer_con 
{
	gap: 20px 0;
    display: flex;
    flex-direction: column;
}

.footer_p 
{
	line-height:1.5;
}

.Copyright 
{
	font-weight: 500;
	font-size: 16px;
}

.footer_p.right 
{
	display: flex;
	flex-direction: column;
	gap:20px 0;
}

.footer_p.right span.Strong 
{
	font-size: 28px;
    font-weight: 500;
}

.sns_wrap 
{
	display: flex;
	gap:0 24px;
	margin-top: auto;
}

/* 반응형 구간 */

/* 노트북 & 테블릿 가로 (해상도 1024px ~ 1279px)*/ 
@media all and (max-width:1279px) 
{ 

} 

/* 테블릿 가로 (해상도 768px ~ 1023px)*/ 
@media all and (max-width:1023px) 
{ 

} 

/* 모바일 가로 & 테블릿 세로 (해상도 480px ~ 767px)*/ 
@media all and (max-width:767px)
{
	.footer_con_wrap{ flex-direction: column; gap: 40px 0; }
}
/* 모바일 세로 (해상도 ~ 479px)*/ 
@media all and (max-width:479px) 
{   
	
}