@charset "UTF-8";
/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#header.sub-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #ccc;
}

#subContainer {
  position: relative;
  padding: 60px 20px;
  margin: 0 auto;
  width: 1200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#subContainer:after {
  content: "";
  display: block;
  clear: both;
}

#leftMenu {
  float: left;
  width: 250px;
  border-right: 1px solid #d7d7d7;
}

#subContents {
  float: right;
  width: calc(100% - 300px);
}

@media only screen and (max-width: 1200px) {
  #subContainer {
    width: 100%;
  }
}

@media only screen and (max-width: 980px) {
  #subContainer {
    padding: 30px 20px;
  }
  #leftMenu {
    display: none;
  }
  #subContents {
    float: none;
    width: 100%;
  }
}

@media only screen and (max-width: 680px) {
  #subContainer {
    padding: 20px 10px;
    width: 100%;
  }
}

/* Left Menu (서브 좌측 영역)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* 좌측메뉴 */
.left-menu h2 {
  padding-bottom: 28px;
  width: calc(100% + 1px);
  text-align: center;
  font-family: "Nanum Square";
  font-weight: bold;
  font-size: 24px;
  color: #000;
  background: #fff;
  border-bottom: 5px solid #562542;
}

.left-menu li {
  width: 100%;
  border-bottom: 1px solid #d7d7d7;
}

.left-menu li a {
  position: relative;
  display: block;
  padding: 0 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 50px;
  text-transform: uppercase;
  font-family: "Nanum Square";
  line-height: 50px;
  font-weight: bold;
  font-size: 18px;
  color: #898989;
  background: #fff;
}

.left-menu li.active a, .left-menu li a:hover, .left-menu li a:active {
background: #bcbebf; /*#939a9e;*/
  color: #fff;
}

.left-menu li.active a:after, .left-menu li a:hover:after, .left-menu li a:active:after {
  position: absolute;
  top: 50%;
  right: -10px;
  content: "";
  display: block;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #939a9e;
}

/* 좌측배너 */
.left-banner {
  margin-top: 180px;
  padding: 25px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border: 1px solid #d7d7d7;
  border-right: 0;
}

.left-banner a:hover {
  color: #649550;
}

.left-banner h3 {
  margin-bottom: 15px;
  font-family: 'Nanum Square';
  font-weight: bold;
  font-size: 17px;
  color: #000;
}

.left-banner h3 strong {
  font-size: 22px;
  color: #562542;
}

.left-banner h3 + p {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 17px;
}

.left-banner dl {
  line-height: 0;
  font-size: 0;
}

.left-banner dt {
  display: inline-block;
  margin-right: 5px;
  padding: 5px 10px;
  line-height: 1;
  font-weight: normal;
  font-size: 13px;
  color: #fff;
  background: #649550;
  border-radius: 30px;
}

.left-banner dd {
  display: inline-block;
  font-weight: bold;
  letter-spacing: -1px;
  font-size: 18px;
  color: #649550;
}

/* Sub Contents (서브 콘텐츠 영역)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* 타이틀 및 페이지네비게이션 */
.sub-title {
  margin-bottom: 50px;
}

.sub-title:after {
  content: "";
  display: block;
  clear: both;
}

.sub-title h3 {
  font-family: "Nanum Square";
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
  background: #fff url("/images/basic_resp/img/bg_divider.png") repeat-x left center;
}

.sub-title h3 span {
  display: inline-block;
  padding-right: 15px;
  background: #fff;
}

.sub-title .page-navi {
  margin-bottom: 16px;
  text-align: right;
  line-height: 1;
  font-size: 12px;
  color: #888;
}

@media only screen and (max-width: 767px) {
  .sub-title {
    margin-bottom: 30px;
  }
  .sub-title h3 {
    margin-top: 10px;
    font-size: 20px;
  }
}

/* 게시판 관련 CSS
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* 일반게시판 List */
.whois-board-list {
  display: inline-block;
  padding: 0;
  font-size: 13px;
}

.whois-board-list .whois-board-row {
  width: 100%;
  margin: 0 0 0 0;
  padding: 15px 0 15px 0;
  float: left;
  border-bottom: 1px solid #eee;
  color: #000000;
}

.whois-board-list .whois-board-row:first-child {
  border-top: 1px solid #562542;
}

/* Line 색상 */
.whois-board-list .whois-board-row .whois-board-row-subject {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.whois-board-list .whois-board-row .whois-board-row-info {
  color: #acacac;
}

.whois-board-list .whois-board-row .whois-board-row-info .whois-board-row-author {
  max-width: 33vw;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

/* 일반게시판 view */
.whois-board-view {
  display: inline-block;
  font-size: 13px;
  border-top: 1px solid #562542;
}

/* Line 색상 */
.whois-board-view .whois-board-view-row {
  width: 100%;
  margin: 0;
  padding: 0;
  padding: 10px 0 10px 0;
  float: left;
  border-bottom: 1px solid #eee;
}

.whois-board-view .whois-board-view-row .whois-board-view-subject {
  width: 100%;
  margin: 0 0 15px 0;
  padding: 0;
  float: left;
  font-size: 18px;
  font-weight: 600;
}

.whois-board-view .whois-board-view-row .whois-board-view-author {
  width: 100%;
  margin: 0 0 5px 0;
  padding: 0;
  float: left;
  font-size: 13px;
  font-weight: 600;
}

.whois-board-view .whois-board-view-row .whois-board-view-info {
  width: 100%;
  margin: 0;
  padding: 0 0 10px 0;
  float: left;
  color: #acacac;
}

.whois-board-view .whois-board-view-row .whois-board-view-content {
  width: 100%;
  margin: 0;
  padding: 10px 0 10px 0;
  float: left;
  font-size: 12px;
}

.whois-board-view .whois-board-view-files {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
}

.whois-board-view .whois-board-view-files .whois-board-view-file {
  width: 100%;
  margin: 0;
  padding: 5px 0;
  float: left;
  font-size: 12px;
}

.whois-board-view .whois-board-view-files .whois-board-view-file .whois-board-view-file-count {
  font-size: 11px;
  color: #c4c4c4;
}

/* 게시판 버튼 */
.btn-search, .whois-button-submit, .btn-sub {
  color: #fff;
  background-color: #562542;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.btn-search:hover, .btn-search:focus, .whois-button-submit:hover, .whois-button-submit:focus, .btn-sub:hover, .btn-sub:focus {
  color: #fff;
  background-color: #447774;
}

/* 게시판 공통 */
.sub-box {
  margin-right: 5px;
  background-color: #562542;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-family: "Nanum Gothic", sans-serif;
}

.sub-box.sm {
  font-size: 12px;
  padding: 2px 5px;
}

.sub-box.m {
  font-size: 14px;
  padding: 4px 8px;
}

.sub-box.lg {
  font-size: 16px;
  padding: 6px 12px;
}

.sub-border {
  border: 1px solid #562542;
}

.sub-border-t {
  border-top: 1px solid #562542;
}

.sub-border-r {
  border-right: 1px solid #562542;
}

.sub-border-b {
  border-bottom: 1px solid #562542;
}

.sub-border-l {
  border-left: 1px solid #562542;
}

.sub-bg {
  background-color: #562542;
}

.sub-bg-hover:hover {
  background-color: #447774;
}

/* 로그인/회원가입 관련 CSS
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.material-form {
  margin: 0 auto;
  background: #fff;
}

.material-form .header {
  padding: 50px 10px;
  background: #6498fe;
  font-size: 16px;
  color: #fff;
}

.material-form .header h3 {
  font-size: 30px;
}

.material-form .header p,
.material-form .header span {
  margin-top: 15px;
  font-size: 16px;
  color: #fff;
}

.material-form .sub-header h4 {
  font-weight: bold;
  height: 34px;
  line-height: 34px;
  font-size: 16px;
}

.material-form .sub-content .form-group:last-child {
  margin: 0;
}

.material-form .input-group {
  position: relative;
  border: 0;
}

.material-form .input-group .input-group-addon {
  padding-right: 6px;
  padding-left: 6px;
  background: #fff;
  border: 0;
}

.material-form .form-control,
input[type='text'].whois,
input[type='password'].whois,
select.whois {
  border: 1px solid #ccc;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

/*.material-form .btn:first-child,*/
.material-form .input-group .form-control:first-child,
.material-form .input-group .form-control.first,
.material-form .input-group .th + .form-control,
.th + input[type='text'].whois,
.th + input[type='password'].whois,
.th + select.whois {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

/*.material-form .btn:last-child,*/
.material-form .input-group .form-control:last-child,
.material-form .input-group .form-control.last,
.material-form .input-group .input-group-btn:last-child,
.material-form .input-group .input-group-btn:last-child button,
.material-form .input-group .input-group-btn:last-child .btn {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.material-form .form-group {
  margin-bottom: 15px;
  overflow: visible;
}

.material-form .form-group.success .form-control {
  color: #5cb85c;
}

.material-form .form-group.failed .form-control {
  color: #d9534f;
}

.material-form .form-control[readonly] {
  background: #fff;
}

.material-form .btn {
  height: 38px;
}

.material-form .btn-default {
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.material-form .input-group input,
.material-form .input-group select,
input[type='text'].whois,
input[type='password'].whois,
select.whois {
  z-index: 10;
}

.input-group label.th {
  z-index: 9;
  display: none;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -10px;
  height: 20px;
  color: #ccc;
}

.input-group label.th.ie9 {
  z-index: 11;
  display: block;
}

.material-form .desc {
  padding: 10px 0;
}

.chkbox {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.chk-block,
.chk-block span {
  display: block;
  text-align: center;
  width: 100%;
}

.chkbox input[type='radio'],
.chkbox input[type='checkbox'] {
  display: none;
}

.chkbox input[type='radio'] ~ .rbtn {
  padding: 6px 12px;
  line-height: 27px;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
}

.chkbox input[type='radio']:checked ~ .rbtn {
  background: #ccc;
  color: #fff;
}

.chkbox input[type='radio'] ~ .box,
.chkbox input[type='checkbox'] ~ .box {
  display: block;
  color: #bbb;
  cursor: pointer;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.chkbox input[type='radio'] ~ .box:before,
.chkbox input[type='checkbox'] ~ .box:before {
  display: inline-block;
  margin-right: 5px;
  padding: 2px;
  font-family: 'Glyphicons Halflings';
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  vertical-align: middle;
  color: #cfcfcf;
}

.chkbox input[type='radio'] ~ .box:before {
  content: "\e165";
}

.chkbox input[type='checkbox'] ~ .box:before {
  content: "\e013";
}

.chkbox input[type='radio']:checked ~ .box,
.chkbox input[type='checkbox']:checked ~ .box {
  color: #666;
}

.chkbox input[type='radio']:checked ~ .box:before,
.chkbox input[type='checkbox']:checked ~ .box:before {
  color: #666;
}

.sub-contents h4.b-txt {
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Nanum Square';
  font-weight: bold;
  font-size: 40px;
  color: #000;
}

.sub-contents h4.b-txt b {
  color: #562542;
}

.sub-contents .txt {
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .sub-contents h4.b-txt {
    margin-bottom: 15px;
    font-size: 30px;
  }
  .sub-contents .txt {
    font-size: 15px;
    line-height: 1.5;
  }
  .sub-contents .wView {
    display: none;
  }
}

.sub1-1 .img-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

.sub1-1 .img-area li {
  width: calc(50% - 10px);
}

@media screen and (max-width: 767px) {
  .sub1-1 {
    margin-top: 25px;
  }
}

.sub5-1 .info {
  border-top: 1px solid #562542;
  padding: 20px 0;
}

.sub5-1 .info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sub5-1 .info dl:last-child {
  margin-top: 20px;
}

.sub5-1 .info dl i {
  color: #562542;
  margin-right: 5px;
}

.sub5-1 .info dl dt {
  font-size: 16px;
  width: 65px;
  -webkit-transform: rotate(0.04deg);
          transform: rotate(0.04deg);
}

.sub5-1 .info dl dd {
  font-size: 16px;
  width: calc(100% - 65px);
}

.sub5-1 .root_daum_roughmap {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .sub5-1 .info dl dt {
    width: 60px;
    font-size: 15px;
  }
  .sub5-1 .info dl dd {
    font-size: 15px;
    width: calc(100% - 60px);
  }
}
