/* common */
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);
* {
  box-sizing: border-box;
}
body {
  font-family: 'Noto Sans KR';
  background-color: #f5f5f5;
}
a {
  font-family: 'Noto Sans KR';
}

/* 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 {
  font-size: 14px;
  font-weight: 600;
}
header .header-wrapper .info a span {
  margin-right: 10px;
  color: crimson;
  font-weight: 600;
}

/* sidebar */
nav {
  display: none;
  width: 100%;
  min-width: 370px;
  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-size: 17px;
  font-weight: 600;
}
.me-elaw-tab .mb-elaw-tabs ul li.active a {
  color: blue;
  border-bottom: 3px solid blue;
}
.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: 10px 15px;
  border-bottom: 1px solid #f5f5f5;
}
.main_article ul li a {
  display: block;
  max-width: calc(100% - 20px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.main_article ul li img {
  margin-left: 5px;
}

/* column section */
.main_article.column ul li {
  display: flex;
  width: 100%;
  height: 133px;
  overflow: hidden;
  padding: 15px;
  border-bottom: 1px solid #f5f5f5;
}
.main_article.column ul li img {
  width: 25%;
  height: 72px;
  margin-left: 0;
  margin-right: 10px;
  object-fit: cover;
}
.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: 20px;
  color: #333;
}
.main_article.column ul li .author .name:after {
  content: '|';
  display: inline-block;
  margin: 0 5px;
}
.main_article.column ul li .column_btm .like span {
  margin-right: 10px;
}

/* view_more */
.view_more {
  width: 100%;
  text-align: center;
}
.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%;
  text-align: center;
}
.com_list .com_img dt a {
  display: block;
}
.com_list .com_img dt a img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}
.com_list .com_img 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;
}

/* 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: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #f5f5f5;
  box-sizing: border-box;
}
.vote_lecture .lect {
  width: 48%;
}
.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;
}

.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;
  }
}
