/* 한글 작성될 경우 한글이 깨지는 것을 방지 */
@charset 'UTF-8';

/* pretendard */
@font-face {
  font-family: "pretendard";
  src: local("pretendard"), url("https://webfontworld.github.io/pretendard/Pretendard.css") format("woff");
  font-style: normal;
  font-weight: normal;
}
@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 100;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 300;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 400;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 500;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 700;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 900;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.otf) format('opentype');}



@import url('https://fonts.googleapis.com/css?family=Nanum+Myeongjo&display=swap');


/* 모바일 다크모드 강제 막기*/
:root {
  color-scheme: light only !important;
}

/* 여백 초기화 */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
dl,
dt,
dd,
table,
tr,
td,
th,
form,
fieldset,
legend,
input,
select,
textarea,
button,
label,
address,
img,
a,
header,
main,
section,
nav,
article,
footer,
div,
span {
  margin: 0;
  padding: 0;
}

/* 리스트 타입 초기화 */
ol,
ul,
li,
dl,
dd,
dt {
  list-style: none;
}

/* 이미지, 필드셋 테두리 제거 */
/* iE 10에서 링크가 걸렸을 때 테두리 제거*/
img,
fieldset {
  border: 0 none;
}

/* 아이폰 css 적용*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  html,
  body {
    font-size: 62.5%;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
  }
}
html,
body {
  font-size: 62.5%;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}




/* 타이포 설정 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
th,
td,
input,
select,
textarea,
button {
  font-family: "pretendard", "Noto Sans KR", "Margun Gothic", "맑은 고딕", "sans-serif";
  font-size: 1.6rem;
  color: #222;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.5px;
  -webkit-text-size-adjust: 100%; /* ios 방향 변경시 글꼴 크기 조정 방지 */
}

/* 폰트 스타일 강제 상속 */
button,
input,
optgroup,
select,
option,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
}

/* a요소 장식 제거, 글자색상 변경 */
a,
a:active,
a:hover {
  text-decoration: none;
  color: inherit;
  background: transparent; /* IE10에서 배경색 그레이 방지 */
}

/* float clear설정 */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* 컨텐츠 화면에서 숨기기 */
.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 0);
}

/* 박스 계산법 변경 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 인라인요소 수직정렬 */
img {
  vertical-align: top;
}
input,
button,
select,
option,
optgroup,
textarea {
  vertical-align: middle;
}

/* iE에서 block 처리 */
main {
  display: block;
}

/* Firefox, Edge, iE 에서 스타일 매칭*/
hr {
  height: 0;
  overflow: visible;
}

/* Chrome ,Edge, Safari에서 스타일 매칭*/
b,
strong {
  font-weight: bolder;
}

/* 윗첨자, 아래첨자 */
/* 상위, 하위 요소의 line hight에 영향을 주지 않기 위해*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -1em; /* 디자인에 따라 값 변경하기*/
}

sup {
  top: -1em; /* 디자인에 따라 값 변경하기*/
}

/*--------------------------------------------------*/
img {
  width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: 0 none;
  background: transparent;
  cursor: pointer;
}





.skip { display:none; }
.mbr { display:none; }

#pop_layer {
	display:none;
	position:fixed; 
	left:0; 
	top:0; 
	width:100%;
	height:100vh;
	z-index: 9999;
}
#pop_layer .pop_bg{
	width:100%; height:100%;
	background:rgba(0,0,0,0.7);
}
#pop_layer .pop_close { 
	//display:none;
	width:25px; height:25px;
	cursor:pointer; 
	position:absolute;
	z-index:9999;
	right:10px; top:15px; 
}
#pop_layer .pop_close:before ,
#pop_layer .pop_close:after {
	content:''; display:inline-block; width:100%; height:1px; background:#222;
	position:absolute; left:0; top:50%; 
}
#pop_layer .pop_close:before { 
	transform:rotate(45deg); 
}
#pop_layer .pop_close:after {
	transform:rotate(135deg); 
}
#pop_layer .pop_content{
	width:600px; height:auto; max-height: 70%;
	position:fixed; 
	left:calc(50% - 300px); 
	top:20%; border-radius:10px;
	padding:20px; background:#fff; 
	overflow-Y:auto;
}
#pop_layer .pop_content .pop_content_wrap {
	height:100%;  
	font-size:2.4rem; 
}
#pop_layer .pop_content .pop_content_wrap .lawyer_history {
	
}
#pop_layer .pop_content .pop_content_wrap .lawyer_history .lawyer_info {
	font-size:1.3em;  margin-bottom:18px; padding-bottom:13px; border-bottom:1px solid #585858;
}
#pop_layer .pop_content .pop_content_wrap .lawyer_history ul  { padding:0 5px; }
#pop_layer .pop_content .pop_content_wrap .lawyer_history ul li  {
	margin-bottom:8px; 
}
@media screen and (max-width: 1081px) {
	.mbr { display:block; }
	
	#pop_layer .pop_content{
		width:90%; height:auto; max-height: 70%;
		position:fixed; 
		left:5%; 
		top:20%; border-radius:10px;
		padding:20px; background:#fff; 
	}
	#pop_layer .pop_content .pop_content_wrap {
		height:100%;  
		font-size:3.5rem; 
	}
	#pop_layer .pop_content .pop_content_wrap .lawyer_history ul li  {
		margin-bottom:6px; 
	}
}



