@charset "UTF-8";
html {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#header {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

#subContainer {
  position: relative;
  padding: 0 0 60px;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
}

#commonContainer {
  position: relative;
  padding: 0 0 60px;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
}

#subContainer:after {
  content: "";
  display: block;
  clear: both;
}

#subContents {
  width: 100%;
}

.bbs-contents {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.bbs-contents h2 {
  display: block;
  font-size: 44px;
  line-height: 120%;
  color: #333;
  text-align: center;
  margin: 0 auto 48px;
  font-family: "S-CoreDream-4Regular";
  letter-spacing: -2px;
  transition: 0.4s;
  word-break: keep-all;
  word-break: keep-all;
}

.bbs-contents p.slogan {
  text-align: center;
  font-size: 22px;
  color: #333;
  word-break: keep-all;
  margin: 0 0 48px;
}

@media only screen and (max-width: 1200px) {
  #subContainer {
    width: 100%;
  }
  #commonContainer {
    width: 100%;
    padding: 0 20px 60px;
  }
  .bbs-contents {
    width: 100%;
    padding: 0 20px;
  }
  .bbs-contents h2 {
    font-size: 36px;
    margin: 0 auto 38px;
  }
  .bbs-contents p.slogan {
    font-size: 20px;
    margin: 0 0 38px;
  }
}
@media only screen and (max-width: 767px) {
  .bbs-contents {
    padding: 0 15px;
  }
  .bbs-contents h2 {
    font-size: 30px;
    margin: 0 auto 30px;
  }
  .bbs-contents p.slogan {
    font-size: 18px;
    margin: 0 0 30px;
  }
}
@media only screen and (max-width: 480px) {
  .bbs-contents h2 {
    font-size: 28px;
  }
}
/* Sub Visual (서브이미지)
------------------------------------------------------------------------------------------------------------------ ---------------------------------------- */
.sub {
  text-align: center;
  width: 100%;
  padding: 40px 0 60px;
  overflow: hidden;
}

.sub ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.sub ul li {
  min-width: 240px;
  background: #f3f3f3;
}
.sub ul li a {
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 18px 10px;
}
.sub ul li a span {
  align-self: center;
  line-height: 1.2;
  color: #666;
  font-size: 18px;
}
.sub ul li.active {
  background: #25428e;
}
.sub ul li.active a span {
  color: #fff;
}

@media only screen and (max-width: 1200px) {
  .sub {
    padding: 40px 20px 70px;
  }
  .sub ul li {
    width: 100%;
    min-width: unset;
  }
  .sub ul.col2 li {
    width: calc((100% - 10px) / 2);
  }
  .sub ul.col3 li {
    width: calc((100% - 20px) / 3);
  }
  .sub ul.col4 li {
    width: calc((100% - 30px) / 4);
  }
  .sub ul.col5 li {
    width: calc((100% - 40px) / 5);
  }
}
@media only screen and (max-width: 767px) {
  .sub {
    padding: 30px 15px 50px;
  }
  .sub ul {
    gap: 5px;
  }
  .sub ul li a span {
    font-size: 15px;
  }
  .sub ul.col2 li {
    width: calc((100% - 5px) / 2);
  }
  .sub ul.col3 li {
    width: calc((100% - 10px) / 3);
  }
  .sub ul.col4 li {
    width: calc((100% - 15px) / 4);
  }
  .sub ul.col5 li {
    width: calc((100% - 20px) / 5);
  }
}
@media only screen and (max-width: 480px) {
  .sub ul li a {
    padding: 15px 5px;
  }
  .sub ul li a span {
    font-size: 13px;
  }
  .sub ul.col5 li {
    width: calc((100% - 10px) / 3);
  }
  .sub.sub1 ul.col5 li:nth-child(4), .sub.sub1 ul.col5 li:last-child {
    width: calc((100% - 5px) / 2);
  }
  .sub.sub2 ul.col5 li:nth-child(2), .sub.sub2 ul.col5 li:first-child {
    width: calc((100% - 5px) / 2);
  }
}
@media only screen and (max-width: 400px) {
  .sub ul li a {
    font-size: 13px;
  }
}
/* Sub Contents (서브 콘텐츠 영역)

.search {display:block; margin:0 0 30px;}

/* 게시판 관련 CSS
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* 일반게시판 List */
.whois-board-list {
  display: inline-block;
  padding: 0;
  font-size: 13px;
}

.whois-board-list .whois-board-row {
  width: 100%;
  margin: 0;
  padding: 15px 0;
  float: left;
  border-bottom: 1px solid #eee;
  color: #000;
}

.bbs-contents input.form-control {
  width: 300px;
}
@media screen and (max-width: 480px) {
  .bbs-contents input.form-control {
    width: 100%;
  }
}

/* Line 색상 */
.whois-board-list .whois-board-row .whois-board-row-subject {
  margin: 0 0 5px;
  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;
}

/* Line 색상 */
.whois-board-view .whois-board-view-row {
  width: 100%;
  margin: 0;
  padding: 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;
  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;
  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;
  float: left;
  color: #acacac;
}

.whois-board-view .whois-board-view-row .whois-board-view-content {
  width: 100%;
  margin: 0;
  padding: 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, .btn-sub, .whois-button-submit {
  color: #fff;
  background-color: #25428e;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
}

.btn-search:focus, .btn-search:hover, .btn-sub:focus, .btn-sub:hover, .whois-button-submit:focus, .whois-button-submit:hover {
  color: #fff;
  background-color: #755346;
}

/* 게시판 공통 */
.sub-box {
  margin-right: 5px;
  background-color: #3d427c;
  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 #3d427c;
}

.sub-border-t {
  border-top: 1px solid #3d427c;
}

.sub-border-r {
  border-right: 1px solid #3d427c;
}

.sub-border-b {
  border-bottom: 1px solid #3d427c;
}

.sub-border-l {
  border-left: 1px solid #3d427c;
}

.sub-bg {
  background-color: #3d427c;
}

.sub-bg-hover:hover {
  background-color: #36384e;
}

/* 로그인/회원가입 관련 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;
  transition: 0.3s all ease;
}

/*.material-form .btn:first-child,*/
.material-form .input-group .form-control.first, .material-form .input-group .form-control:first-child, .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, .material-form .input-group .form-control:last-child, .material-form .input-group .input-group-btn:last-child, .material-form .input-group .input-group-btn:last-child .btn, .material-form .input-group .input-group-btn:last-child button {
  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 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.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;
  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;
  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 h3 {
  text-align: center;
  font-size: 2.75rem;
  color: #333;
  margin: 0 0 80px;
  font-family: "S-CoreDream-5Medium";
}
.sub-contents h3 b {
  color: #25428e;
  font-weight: 400;
}
.sub-contents .txt {
  font-size: 1rem;
  color: #666;
  word-break: keep-all;
}
.sub-contents .txt b {
  color: #25428e;
  font-weight: 500;
}
.sub-contents .slogan {
  font-size: 1.25rem;
  color: #333;
  line-height: 140%;
  text-align: center;
}
.sub-contents .slogan strong {
  font-family: "S-CoreDream-5Medium";
  font-size: 30px;
  color: #25428e;
  display: block;
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.3;
}
.sub-contents .dotList li {
  position: relative;
  padding-left: 12px;
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
}
.sub-contents .dotList li b {
  font-weight: 500;
  color: #333;
}
.sub-contents .dotList li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.sub-contents .dotList li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 3px;
  height: 3px;
  background: #666;
}
.sub-contents ol {
  counter-reset: my-sec-counter;
}
.sub-contents ol li {
  position: relative;
  padding-left: 1rem;
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
}
.sub-contents ol li b {
  font-weight: 500;
  color: #333;
}
.sub-contents ol li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.sub-contents ol li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: my-sec-counter;
  content: counter(my-sec-counter) ".";
}
.sub-contents .mt20 {
  margin-top: 1.25rem;
}
.sub-contents .mt40 {
  margin-top: 2.5rem;
}
.sub-contents .mt100 {
  margin-top: 6.25rem;
}
.sub-contents .alignC {
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .sub-contents {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .sub-contents h3 {
    font-size: 30px;
    margin: 0 0 50px;
  }
}

.sub1-1 {
  text-align: center;
  word-break: keep-all;
}
.sub1-1 .img-area {
  width: 100%;
  height: 21.875rem;
  background: url(/images/kor09r-22-0461/sub/1_1_img.png) no-repeat center center/cover;
  margin-bottom: 4.375rem;
}
.sub1-1 dt {
  font-size: 1.875rem;
  color: #25428e;
  font-family: "S-CoreDream-5Medium";
}
.sub1-1 dd {
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
  margin: 0.625rem 0 1.25rem 0;
}
.sub1-1 .txt {
  line-height: 1.875rem;
}

.sub1-3 .root_daum_roughmap {
  width: 100%;
  margin-bottom: 2.1875rem;
}
.sub1-3 .txt-area {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #25428e;
  padding-top: 1.875rem;
}
.sub1-3 .txt-area dl {
  display: flex;
  flex-wrap: wrap;
}
.sub1-3 .txt-area dl:first-child {
  width: 70%;
}
.sub1-3 .txt-area dl:last-child {
  width: 30%;
}
.sub1-3 .txt-area dl dt {
  width: 100px;
  position: relative;
  padding-left: 30px;
  font-size: 1.25rem;
  color: #333;
  font-family: "S-CoreDream-5Medium";
  font-weight: 500;
}
.sub1-3 .txt-area dl dt:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 21px;
  height: 20px;
  background-size: 21px 20px;
}
.sub1-3 .txt-area dl dt.addr:before {
  background: url(/images/kor09r-22-0461/sub/ico_addr.png) no-repeat 0 0;
}
.sub1-3 .txt-area dl dt.mail:before {
  background: url(/images/kor09r-22-0461/sub/ico_mail.png) no-repeat 0 0;
}
.sub1-3 .txt-area dl dd {
  width: calc(100% - 100px);
  align-self: center;
}
@media screen and (max-width: 1200px) {
  .sub1-3 .txt-area dl {
    width: 100% !important;
  }
  .sub1-3 .txt-area dl:first-child {
    margin-bottom: 15px;
  }
}

.sub1-2 {
  word-break: keep-all;
}
.sub1-2 .img-area {
  width: 100%;
  height: 21.875rem;
  background: url(/images/kor09r-22-0461/sub/1_2_img.png) no-repeat center center/cover;
  margin-bottom: 4.375rem;
}
.sub1-2 .txt-area {
  border-top: 1px solid #25428e;
}
.sub1-2 .txt-area > .area {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 1.875rem 0;
}
.sub1-2 .txt-area > .area .num-area {
  width: 60px;
}
.sub1-2 .txt-area > .area .num-area span {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  font-size: 1rem;
  color: #333;
  text-align: center;
  line-height: 1.875rem;
  background: #f7f7f7;
  border-radius: 50%;
}
.sub1-2 .txt-area > .area dl {
  width: calc(100% - 60px);
}
.sub1-2 .txt-area > .area dl dt {
  font-size: 1.25rem;
  color: #333;
  font-weight: 700;
  margin: 0.1875rem 0 0.625rem 0;
}
.sub1-2 .txt-area > .area dl dt b {
  color: #25428e;
}
@media screen and (max-width: 767px) {
  .sub1-2 .txt-area > .area .num-area {
    width: 40px;
  }
  .sub1-2 .txt-area > .area dl {
    width: calc(100% - 40px);
  }
}