@charset "UTF-8";
html {
  overflow: overlay; }
  html ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    border: 1px solid transparent;
    background-color: #FFFFFF; }
  html ::-webkit-scrollbar-thumb {
    border: 4px solid transparent;
    background-clip: content-box;
    background-color: #DDDDDD; }

body {
  background-color: #f3f3f5; }

.lay_wrap {
  min-width: 1024px; }

/* 컨텐츠 레이아웃 */
.lay_contents_wrap {
  margin-top: 42px;
  padding: 20px 50px; }
  .main .lay_contents_wrap {
    margin-top: 0; }

.content_wrapper {
  padding: 20px;
  border: 1px solid #DADBDC;
  background-color: #FFFFFF; }

.lay_contents_box {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  margin-bottom: 10px;
  column-gap: 10px; }
  .lay_contents_box + .lay_contents_box {
    margin-top: 33px; }

.lay_contents_col {
  flex: 1;
  min-width: 0;
  box-sizing: border-box; }
  .lay_contents_col:first-child {
    margin-left: 0; }
  .lay_contents_col .content_body_wrap {
    /*display: flex;
		flex-wrap: wrap;
		.content_body {
			flex: 1;
			& + .content_body {
				margin-left: 10px;
			}
		}*/
    display: table;
    table-layout: fixed;
    width: 100%; }
    .lay_contents_col .content_body_wrap .content_body {
      display: table-cell;
      width: 50%; }
      .lay_contents_col .content_body_wrap .content_body + .content_body {
        padding-left: 18px; }

.lay_contents_arr {
  width: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative; }
  .lay_contents_arr:after {
    content: '';
    display: block;
    border-top: 10px solid transparent;
    border-left: 10px solid #B8BDC0;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-right: -10px;
    position: relative;
    top: calc(50% - 20px); }

.lay_contents_button {
  text-align: center;
  padding-top: 6px;
  padding-bottom: 11px; }
  .lay_contents_button .btn {
    min-width: 125px; }

/* 페이지 타이틀 */
/* 메인 컨텐츠 레이아웃 */
.main_contents_wrap {
  padding: 20px 50px; }

.main_contents_box {
  display: flex;
  margin-bottom: 10px; }

.main_contents_col {
  flex: 1;
  min-width: 0;
  margin-left: 10px;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #DADBDC;
  background-color: #FFFFFF; }
  .main_contents_col:first-child {
    margin-left: 0; }

/* Header Layout */
.lay_header {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  border-bottom: 1px solid #d7d7d7;
  background-color: #FFFFFF; }
  .lay_header .header_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    height: 84px; }
  .lay_header .site_title {
    flex: none;
    padding-bottom: 10px; }
  .lay_header .nav_gnb {
    flex: auto; }
  .lay_header .site_right {
    flex: none; }

/* GNB Menu */
.nav_gnb .gnb_root {
  display: flex;
  align-items: center;
  justify-content: center; }

.nav_gnb .gnb_item .link_menu {
  color: #050505;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  display: block;
  padding: 10px 18px 14px;
  position: relative;
  text-decoration: none;
  cursor: pointer; }
  .nav_gnb .gnb_item .link_menu:after {
    content: ' ';
    display: block;
    width: 1px;
    height: 13px;
    position: absolute;
    top: calc(50% - (13px / 2));
    right: 0;
    background-color: #bfbfbf; }

.nav_gnb .gnb_item:last-child .link_menu:after {
  content: none; }

.nav_gnb .gnb_root > .gnb_item:hover .gnb_list_wrap, .nav_gnb .gnb_root > .gnb_item.active .gnb_list_wrap {
  display: block; }

.nav_gnb .gnb_root > .gnb_item:hover .gnb_list_wrap {
  z-index: 5; }

.nav_gnb .gnb_item.active .link_menu,
.nav_gnb .gnb_item:hover .link_menu {
  color: #F85000; }

.nav_gnb .gnb_list_wrap {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background-color: #343536; }
  .nav_gnb .gnb_list_wrap .gnb_depth2 {
    display: flex;
    justify-content: center; }
    .nav_gnb .gnb_list_wrap .gnb_depth2 .link_menu {
      color: #FFFFFF;
      font-size: 13px;
      text-decoration: none;
      opacity: 0.8; }
      .nav_gnb .gnb_list_wrap .gnb_depth2 .link_menu:hover {
        opacity: 1; }
    .nav_gnb .gnb_list_wrap .gnb_depth2 .gnb_item.active .link_menu {
      opacity: 1; }

/* GNB 우측 컨텐츠 */
.site_right {
  position: relative;
  padding-top: 27px;
  padding-bottom: 12px; }
  .site_right .login_info {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    position: absolute;
    top: 0;
    right: 0; }
    .site_right .login_info .login_user {
      flex: auto;
      color: #7d7d7d;
      font-size: 12px;
      line-height: 1.3;
      white-space: nowrap;
      margin-right: 10px; }
      .site_right .login_info .login_user b {
        color: #050505;
        font-weight: bold; }
    .site_right .login_info .btn {
      flex: none; }
  .site_right .update_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end; }
    .site_right .update_info .update_date {
      color: #7d7d7d;
      font-size: 12px;
      line-height: 28px;
      height: 30px;
      border: 1px solid #D6D7D8;
      border-right-width: 0;
      display: block;
      padding-left: 12px;
      padding-right: 12px;
      box-sizing: border-box; }
      .site_right .update_info .update_date b {
        color: #000000;
        font-weight: bold; }

/* GNB 이미지 */
.img_gnb {
  background-image: url(../images/img_gnb.png); }
  .img_gnb.img_logo {
    font-size: 0;
    color: transparent;
    display: block;
    width: 172px;
    height: 51px;
    background-position: 0 0; }

/* 메인 박스 내 타이틀 영역 */
.box_title {
  color: #050505;
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold; }

/* Footer Layout */
.lay_footer {
  height: 75px;
  padding-left: 50px;
  padding-right: 50px;
  border-top: 1px solid #DBDCDE;
  background-color: #FFFFFF; }
  .lay_footer .footer_wrap {
    display: flex;
    align-items: center;
    height: 100%; }

/* Copyright */
.footer_copyright {
  flex: auto;
  display: flex;
  align-items: flex-end; }
  .footer_copyright .img_logo {
    flex: none;
    margin-right: 10px; }
  .footer_copyright .txt_copyright {
    font-size: 10px;
    line-height: 1.3;
    color: #212121;
    text-transform: uppercase; }

/* 바로가기 */
.footer_shortcut {
  flex: none;
  display: flex; }
  .footer_shortcut .footer_link {
    margin-right: 10px; }
    .footer_shortcut .footer_link:before {
      content: '';
      vertical-align: middle;
      display: inline-block;
      width: 1px;
      height: 12px;
      margin-right: 10px;
      background-color: #D1D2D3; }
    .footer_shortcut .footer_link a {
      color: #999999;
      font-size: 12px;
      line-height: 1.3;
      letter-spacing: -0.02em;
      text-decoration: none; }
    .footer_shortcut .footer_link:first-child:before {
      content: none; }
    .footer_shortcut .footer_link:last-child {
      margin-right: 0; }

/* Footer 이미지 */
.img_footer {
  background-image: url(../images/img_footer.png); }
  .img_footer.img_logo {
    font-size: 0;
    color: transparent;
    display: block;
    width: 72px;
    height: 13px;
    background-position: 0 0; }
