/* common */
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);
@font-face{
    font-family:"helveticaneue-light";
    src:url("https://candyfonts.com/wp-data/2019/04/06/51365/HelveticaNeue Light.ttf") format("woff"),
    url("https://candyfonts.com/wp-data/2019/04/06/51365/HelveticaNeue Light.ttf") format("opentype"),
    url("https://candyfonts.com/wp-data/2019/04/06/51365/HelveticaNeue Light.ttf") format("truetype");
}
* {
  box-sizing: border-box;
}
body {
  font-family: 'helveticaneue-light';
  background-color: #f5f5f5;
}
a {
  font-family: 'helveticaneue-light';
}

/* header */
header .header-wrapper {
  position: relative;
  width: 100%;
}
header .header-wrapper h1 {
  /*width:24%;*/
  text-align: center;
  margin: 0 auto 10px auto;
  padding: 0 0; /*padding-top: 5px;*/
  height: 80px;
  background-color: #fff;
}
header .header-wrapper h1 a {
  display: inline-block;
  height: 80px;
}
header .header-wrapper h1 img {
  position: relative;
  top: 15px;
  width: auto;
  height: 50px;
}
header .header-wrapper .header-menu {
  position: absolute;
  left: 0px;
  top: 15px;
  width: 50px;
  height: 50px;
}
header .header-wrapper .header-menu a {
  display: block;
  width: 50px;
  height: 50px;
}
header .header-wrapper .header-menu a ul {
  position: absolute;
  left: 15px;
  top: 18px;
  width: 20px;
  height: auto;
}
header .header-wrapper .header-menu a ul li {
  width: 20px;
  height: 2px;
  background-color: #515151;
  margin-bottom: 4px;
}
header .header-wrapper .header-right {
  position: absolute;
  top: 15px;
  right: 0;
  width: 50px;
  height: 50px;
  padding-right: 10px;
}
header .header-wrapper .header-right a {
  display: block;
  width: 50px;
  height: 50px;
  margin-top: 5px;
  text-align: center;
}
header .header-wrapper .header-right a img {
  width: 25px;
  vertical-align: top;
}
header .header-wrapper .header-right a span {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
header .header-wrapper .info {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 15px;
  background-color: #fff;
}
header .header-wrapper .info a {
  display: block;
  max-width: 100%;
  font-size: 11pt;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
header .header-wrapper .info a span {
  margin-right: 10px;
  color: #dc143c;
  font-weight: 600;
}

/* sidebar */
nav {
  display: none;
  width: 100%;
  height: 100vh;
  padding-top: 15px;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  z-index: 999;
  overflow: hidden;
  animation: RightToLeft 0.5s;
}
nav .user_btn {
  display: flex;
  padding-left: 20px;
  align-items: center;
}
nav .user_btn .mypage_btn a {
  display: block;
  text-align: center;
}
nav .user_btn .mypage_btn a img {
  width: 25px;
}
nav .user_btn .mypage_btn a span {
  display: block;
  margin-top: -5px;
  font-size: 10px;
}
nav .user {
  display: flex;
  padding: 15px;
  justify-content: space-between;
  border-bottom: 1px solid #333;
}
nav .user li {
  width: 49%;
  text-align: center;
}
nav .user li a {
  display: block;
  line-height: 30px;
  font-size: 14px;
  border: 1px solid #a4a4a4;
  border-radius: 3px;
}
nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
nav .menu li {
  width: 33.3%;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #f5f5f5;
}
nav .text_banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  text-align: center;
  border-top: 10px solid #f5f5f5;
  border-bottom: 10px solid #f5f5f5;
}
nav .text_banner img {
  width: 20px;
  margin-right: 10px;
}
nav .text_banner p {
  line-height: 35px;
  color: #8bae58;
}
nav .close_btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  padding: 0;
  text-indent: -9999px;
  z-index: 200;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: transparent;
}
nav .close_btn span {
  display: block;
  float: left;
  width: 100%;
  height: 3px;
  position: relative;
  background-color: #333;
}
nav .close_btn .bar1 {
  margin-top: 0;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
nav .close_btn .bar2 {
  margin-top: 3px;
  opacity: 0;
}
nav .close_btn .bar3 {
  margin-top: -9px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.nav_btm {
  border-top: 10px solid #f5f5f5;
}
.nav_btm ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav_btm ul li {
  width: 33.3%;
  padding: 15px 0;
  text-align: center;
}
.nav_btm ul li a {
  color: purple;
}
.nav_bg {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
}

/* tab */
.me-elaw-tab {
  border-bottom: 1px solid #e2e2e2;
  background-color: #fff;
}
.me-elaw-tab .mb-elaw-tabs {
  width: 100%;
  height: 50px;
}
.me-elaw-tab .mb-elaw-tabs ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  overflow: hidden;
}
.me-elaw-tab .mb-elaw-tabs ul li {
  /* float: left; */
  white-space: nowrap;
  text-align: center;
}
.me-elaw-tab .mb-elaw-tabs ul li a {
  display: block;
  height: 50px;
  padding: 0 10px;
  font-weight: 600;
}

.me-elaw-tab .mb-elaw-tabs ul li a span{
  font-size: 16px;
}

.me-elaw-tab .mb-elaw-tabs ul li.active span {
  color: blue;
  border-bottom: 3px solid blue;
  padding-bottom: 12px;
}

.me-elaw-tab .mb-elaw-tabs ul li.on span {
  color: blue;
  border-bottom: 3px solid blue;
  padding-bottom: 12px;
}

.advertise {
  display: table;
  width: 100%;
  padding: 15px;
  margin: 0 auto 10px auto;
  box-sizing: border-box;
  background-color: #fff;
}
.advertise li {
  font-size: 13px;
}
.advertise li a {
  display: block;
  margin-bottom: 5px;
  color: blue;
  font-size: 15px;
}

.main_link_box {
  width: 100%;
  border-bottom: 10px solid #f5f5f5;
  overflow: hidden;
  background-color: #fff;
}
.main_link_box ul {
  height: 50px;
  padding-left: 15px;
  overflow: hidden;
}
.main_link_box ul li {
  float: left;
}
.main_link_box ul li a {
  display: block;
  padding-right: 15px;
  line-height: 50px;
  font-size: 15px;
  font-weight: 600;
}
.main_link_box .new_icon {
  width: 13px;
  height: 13px;
  background: url(/common_img/ico_new.png) no-repeat;
  background-size: 100%;
  font-size: 0;
  color: transparent;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0px 1px 4px;
}
/* section */
.main_article {
  margin-bottom: 10px;
  background-color: #fff;
}
.main_article h2 {
  position: relative;
  padding: 15px;
  margin: 0;
}
.main_article h2 a {
  display: block;
  font-size: 18px;
}
.main_article h2 a span {
  padding-top: 3px;
  float: right;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.47);
}
.main_article ul li {
  display: flex;
  align-items: center;
  padding: 11px 15px;
  border-bottom: 1px solid #f5f5f5;
  min-height: 40px;
}
.main_article ul li a {
  display: block;
  /*max-width: calc(100% - 10px);*/
/max-width: 100%;
  min-height: 18px;
  letter-spacing: -1px;
  font-size: 1.07em;
  overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

.main_article ul li a:visited {
  color : #888;
}

.main_article ul li a span {
  width: 100%;

}

#consulting ul li {
  display: none;
}
/* column section */
.main_article.column ul li {
  display: none;
  padding: 0;
}
.main_article.column ul li .inner {
  display: flex;
  width: 100%;
  height: 133px;
  overflow: hidden;
  padding: 15px;
  border-bottom: 1px solid #f5f5f5;
}
.main_article.column ul li img {
  width: 100%;
  height: 72px;
  margin-left: 0;
  margin-right: 10px;
  object-fit: cover;
}
.main_article.column ul li .inner>a:first-child {
	width: 25%;	
}


.main_article.column ul li .text {
  width: 100%;
}
.main_article.column ul li .img_text {
  width: 75%;
}
.main_article.column ul li .column_btm {
  display: flex;
  height: 100%;
  font-size: 12px;
  font-weight: 300;
}
.main_article.column ul li a {
  max-width: 100%;
  margin-bottom: 10px;
  font-weight: 600;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.main_article.column ul li p {
  display: -webkit-box;
  margin-bottom: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  word-break: keep-all;
}
.main_article.column ul li .author {
  margin-right: 8px;
  color: #333;
}
.main_article.column ul li .author .name:after {
  content: '|';
  display: inline-block;
  margin: 0 3px;
}
.main_article.column ul li .column_btm .like span {
  margin-right: 8px;
}

.article_int ul li {
  padding: 15px!important;
  overflow: hidden;
  display: block!important;
  width: 100%;
}

.article_int ul li a {
  width: 100%;
}

.article_int ul li img {
  width: 70px!important;
  height: 70px!important;
  border-radius: 100px;
  float: left;
}

.article_int ul li .text_box {
  margin-left: 10px;
  width: 100%;
}

.article_int ul li .text_box h3 {
  font-size: 15px;
  color: #555dd2;
   text-align: left;
   white-space: normal;

}



.article_int ul li .text_box h3 span {
  color: #848a90;
  margin-left: 5px;
  font-weight: 400;
  font-size: 14.5px;
  white-space: normal;
}

/* view_more */
.view_more {
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.view_more a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: #333;
}
.view_more a span {
  margin-top: -3px;
  vertical-align: middle;
}

.com_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #f5f5f5;
  box-sizing: border-box;
}
.com_list .com_img {
  width: 48%;
}
.com_list .com_img dt {
  width: 100%;
  height: auto;
  max-height: 150px;
  text-align: center;
  overflow: hidden;
}
.com_list .com_img dt a  {
  display: block;
}
.com_list .com_img dt a img {
  width: 100%;	
  min-height: 150px;
}
.com_list .com_img dd {
  margin-top: 5px;
  display: -webkit-box;
  line-height: 20px;
  height: 40px;
  -webkit-line-clamp: 2;
  /*-webkit-box-orient: vertical;*/
  word-wrap: break-word;
  /*word-break: keep-all;*/
  overflow: hidden;
  text-overflow: ellipsis;
}

.com_list .com_img dd:visited {
  color: #888;
}

/* 전문가 칼럼 뷰 */
.column_view_info {
  width: 93%;
  margin-left: 3.5%;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  margin-top: 30px;
  padding: 20px;
  padding-bottom: 30px;
}

.column_view_info_top {
 width: 100%;
 overflow: hidden;
}

.column_view_info_top img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  float: left;
}

.column_view_info_top button {
  float: left;
  background-color: transparent; 
  border: 1px solid #1565c0;
  color: #1565c0;
  font-size: 13px;
  padding: 5px 20px;
  margin-top: 20px;
  margin-left: 4%;
}


.column_view_info_bottom {
  width: 80%;
  margin-top: 20px;
}

.column_view_info_bottom h3 {
  font-size: 3.8vw;
}

.column_view_info_bottom p {
  margin-top: 10px; 
  font-size: 14px;
  color: #ad5eaf;
  overflow: hidden;
  height: 3em;
  text-align: left;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.column_view_info_bottom ul {
  margin-top: 35px; 
}

.column_view_info_bottom ul li {
 font-size: 14px;
 border-bottom: none;
 padding: 3px 0;
}

.survey_view {
 width: 100%;
 text-align: center;
}

.survey_view button {
  background-color: transparent; 
  border: 1px solid #1565c0;
  color: #1565c0;
  font-size: 13px;
  padding: 5px 20px;
  margin: 20px 0 5px;
}

/* banner */
.banner {
  width: 100%;
  margin-bottom: 10px;
}
.banner .banner_random a {
  display: block;
  width: 100%;
}
.banner .banner_random a img {
  display: block;
  width: 100%;
  height: auto;
}

/* big banner */
.banner_big {
  width: 100%;
  margin-bottom: 10px;
}
.banner_big .banner_big_random a {
  display: block;
  width: 100%;
}
.banner_big .banner_big_random a img {
  display: block;
  width: 100%;
}

.vote_lecture {
  display: none;
}
.vote_lecture .lecture_inner {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  box-sizing: border-box;
  overflow: hidden;
}
.vote_lecture .lect {
  width: 48%;
  display: inline-block;
  margin-left: 1%;
  margin-top: 1%;
  overflow: hidden;
}
.vote_lecture .lect dt {
  width: 100%;
  text-align: center;
}
.vote_lecture .lect dt a {
  display: block;
}
.vote_lecture .lect dt a img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}
.vote_lecture .lect dd {
  display: -webkit-box;
  line-height: 20px;
  height: 40px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vote_lecture .lect dd a:visited {
 color: #888;
}

.all_menu h2 a {
  font-size: 16px;
}
.all_menu table {
  width: 100%;
}
.all_menu table:first-of-type {
  border-bottom: 10px solid #f5f5f5;
}
.all_menu table tbody {
  width: 100%;
}
.all_menu table tbody tr {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid #f5f5f5;
}
.all_menu table tbody tr td {
  width: 33.3%;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
}
.all_menu table tbody tr td:nth-child(2) {
  border-left: 1px solid #f5f5f5;
  border-right: 1px solid #f5f5f5;
}
.all_menu table tbody tr td a {
  display: block;
  font-size: 15px;
}
.accent {
  font-weight: 600;
}

/* footer */
footer {
  padding: 40px 0;
  background-color: #1e1e1e;
}
.copyright {
  margin-bottom: 5px;
  font-size: 11px;
  text-align: center;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.4px;
}
.email {
  font-size: 11px;
  text-align: center;
  color: #cccbcb;
}

/* animation */

@keyframes RightToLeft {
  0% {
    right: -100vw;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}


#view_style div.article { padding:0px; }
#view_style div.article div.image_aside { padding:7px 0; }
#view_style div.article div.image_aside img { max-width:100%; cursor:pointer; }

.right-line01 {height:30px;border:1px solid #dfdfdf;display:inline-block;vertical-align:top;}
.right-line02 {height:30px;border:1px solid #ef5350;display:inline-block;vertical-align:top;}
.btn_artialoriginal {border:1px solid #dfdfdf;display:inline-block;zoom:1;padding:0 5px;margin:0 5px 0;height:30px;font-size:12px;color:#888;line-height:30px;letter-spacing:0;}
.sns-box { display:none;position:absolute;width:380px;padding:10px 10px 10px 5px;background:#fff;border:1px solid #000;top:25%;right:2px;z-index:999999999999999999999}
.sns-box li { display:table!important;width:100%;}
.sns-box li a { display:table-cell;width:15%;line-height:160%;}
.sns-box a { width:15%;display:inline-block;text-align:center;font-size:12px;margin-bottom:5px;letter-spacing:-1px;}
.sns-box a img { display:block;margin:0 auto 5px;}
.sns-box input[type=text] { height:25px;margin:5px 0  0 10px;background:#f8f8f8;padding:0 5px;line-height:25px;font-size:12px;border:1px solid #d8d8d8;float:left;width:80%;}
.sns-box input[type=button] { height:27px;background:#fff;padding:0 5px;line-height:25px;font-size:11px;border:1px solid #d8d8d8;float:left;width:20%;margin-left:-1px;color:#000;margin-top:5px;cursor:pointer;}


/* 비밀상담 */
.contents_area_secret {width: 100%;	 }
.contents_area_secret_top_banner {width: 100%;}
.contents_area_secret_top_banner img {width: 100%;}
.elaw-helper { width: 100%; height: 380px; margin-right: 10px; border-bottom:1px solid #ccc; }
.elaw-helper .elaw-helper-banner .on { display: inline-block; }
.elaw-helper-form {margin-top:5px; display: inline-block; width: 100%; /*height: 405px;*/ height:100%; padding: 10px; border: 3px solid #ccc; background-color: #fff;}
.elaw-helper-form .eh-form-title {margin-top:10px; width: 100%; height: 20px; margin-bottom: 5px; }
/*.elaw-helper-form .eh-form-title .ehf-title .ehf-title-left { float: left; font-size: 0.9em; font-weight: bold; }*/
.elaw-helper-form .eh-form-title .ehf-title .ehf-title-center1{font-size: 0.8em; color:green; display: inline-block; padding-top: 2px; padding-left: 5px; letter-spacing: -1px;}
.elaw-helper-form .eh-form-title .ehf-title .ehf-title-center2{font:600 0.9em 'Nanumgothic'; display: inline-block; padding-top: 2px; padding-left: 5px;}
.elaw-helper-form .eh-form-title .ehf-title .ehf-title-center2 a{color:navy;}
.elaw-helper-form .eh-form-title .ehf-title .ehf-title-center2 a:hover, .elaw-helper-form .eh-form-title .ehf-title .ehf-title-center2 a:active, .elaw-helper-form .eh-form-title .ehf-title .ehf-title-center2 a:focus{text-decoration:underline;}
.elaw-helper-form .eh-form-title .ehf-title .ehf-title-right { float: right; color: #D74120; font-size: 12px; font-weight: bold; }
.elaw-helper-form .eh-form-category { width: 100%; height: 40px; }
.elaw-helper-form .eh-form-formgroup { width: 100%;  }
.elaw-helper-form .eh-form-formgroup .ehf-formgroup-table { padding-top: 10px; border-top: 1px solid #000; }
.elaw-helper-form .eh-form-formgroup .ehf-formgroup-table .tbl-helper-form {width: 100%;}
.elaw-helper-form .eh-form-formgroup .ehf-formgroup-table .tbl-helper-form tr { height: 45px; }
.elaw-helper-form .eh-form-formgroup .ehf-formgroup-table .tbl-helper-form tr th { width: 20%; padding: 5px 10px; background-color: #fafafa; font-size: 12px; font-weight: normal; text-align: left; border-bottom: 1px solid #e8e8e8; }
.elaw-helper-form .eh-form-formgroup .ehf-formgroup-table .tbl-helper-form tr td { padding: 5px; border-bottom: 1px solid #e8e8e8; width: 80%;	}
.elaw-helper-form .eh-form-formgroup .ehf-formgroup-btns { text-align: center; margin-top: 25px; margin-bottom:15px; }
.elaw-helper-form .eh-form-formgroup .ehf-formgroup-btns .btn-helper { cursor: pointer; display: inline-block; padding: 10px 30px;  background-color: #D74120; text-align: center; }
.elaw-helper-form .eh-form-formgroup .ehf-formgroup-btns .btn-helper a { font-size: 13px; font-weight: bold; color: #ffffff; }
.input-helper { height: 28px; text-indent: 5px; border: 1px solid #bababa; }
.textarea-helper { width: 100%; height: 100px; padding: 5px; border: 1px solid #bababa; }


.board_helper_banner{width: 100%; margin-top:50px;  height: 110px; background: url(/fgmusic/images/helper_banner.jpg) right 30% top 0 no-repeat; background-size: 180%; position: relative;} 
.board_helper_banner p{ position: absolute; top: 13vw; left: 5%; }
.board_helper_banner p span{display: block; font: normal 3.5vw 'Nanum Gothic'; color: #fff; line-height:6vw;}
.board_helper_banner p span.h_banner_last{color: #f3ee52; font-weight: bold;}

/* 등록하기 */
.bbs_list_registration_formgroup { width: 100%;}
.bbs_list_registration_formgroup_table { margin-top: 5px; display: inline-block; width: 100%; height: 100%; padding: 10px; border: 3px solid #ccc; background-color: #fff;}
.bbs_list_registration_form {width: 100%;}
.bbs_list_registration_form tr  {height: 45px;}
.bbs_list_registration_form tr th {width: 20%;  padding: 5px 10px; background-color: #fafafa; font-size: 12px; font-weight: normal; text-align: left;  border-bottom: 1px solid #e8e8e8;}
.bbs_list_registration_form tr td {width: 72%; padding: 5px; border-bottom: 1px solid #e8e8e8;}
.bbs_list_registration_form tr td input {width: 100%; height: 28px; text-indent: 5px; border: 1px solid #bababa;}
.bbs_list_registration_form tr td textarea {width: 100%; height: 200px; padding: 5px; text-indent: 0; border: 1px solid #bababa;}
.bbs_list_registration_form tr th svg {vertical-align: middle;}

.btn_list ul {width: 100%; overflow: hidden;}
.btn_list ul li { text-align: center; display: inline-block; margin: 10px 4px; width:20%; height: 30px; line-height: 30px; font-weight: bold; background-color: #fafafa; border: 1px solid #ccc; color: #666; font-size: 0.8em;}
.rfloat { float: right !important;}
.btn_list ul a { color: #000;}

