@charset "UTF-8";
/* 초기화 */
@font-face {
  font-family: "Noto Sans KR", sans-serif;
  src: url("font/NotoSansKR-Regular.otf");
}
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", sans-serif;
  /*font-family: 'Noto Serif KR', serif;*/
  font-size: 13.6pt;
  color: #333;
  letter-spacing: -0.05em;
}

ol, ul, li {
  list-style: none;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

form, fieldset, legend, label {
  border: 0;
}

button:focus, button:active,
input:focus, input:active,
textarea:focus, textarea:active,
select:focus, select:active {
  outline: none;
  box-shadow: none;
}

/* 공통 스타일 */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  background: rgb(255, 255, 255);
}
.header .navWrap {
  position: relative;
}
.header .navWrap .navBox {
  position: relative;
  z-index: 900;
  min-width: 1200px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 7%;
  border-bottom: 1px solid #ddd;
  background: rgb(255, 255, 255);
}
.header .navWrap .navBox .logoBox {
  height: 100%;
  display: flex;
  align-items: center;
}
.header .navWrap .navBox .logoBox .logo {
  height: 1.4em;
  width: 200px;
  background: url("../img/logoB.png") no-repeat center left;
  background-size: contain;
}
.header .navWrap .navBox .nav ul {
  display: flex;
  justify-content: flex-end;
}
.header .navWrap .navBox .nav ul li {
  width: 160px;
  font-weight: 500;
  text-align: right;
  text-align: center;
  cursor: pointer;
}
.header .navWrap .navBox .nav ul li a {
  font-size: 1.06em;
}
.header .navWrap .dropdownNav {
  position: absolute;
  top: 0;
  top: -160px;
  z-index: 700;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.4s ease;
}
.header .navWrap .dropdownNav ul.menuGroupWrap {
  display: flex;
  justify-content: right;
  padding: 1.4em 7% 1.3em 7%;
}
.header .navWrap .dropdownNav ul.menuGroupWrap li.menuGroup {
  width: 160px;
  display: inline-flex;
  justify-content: center;
}
.header .navWrap .dropdownNav ul.menuGroupWrap li.menuGroup ul li.menuText {
  color: rgba(0, 0, 0, 0);
  font-size: 0.96em;
  line-height: 2.2em;
  text-align: center;
  transition-delay: 0.8s;
  transition: all 1s ease;
}
.header .navWrap .dropdownNav ul.menuGroupWrap li.menuGroup ul li.menuText:hover {
  color: #0c5c97;
}
.header .navWrap:hover .dropdownNav {
  top: 70px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}
.header .navWrap:hover .dropdownNav .menuGroupWrap .menuGroup ul .menuText {
  color: rgba(0, 0, 0, 0.6);
}

.path {
  width: 100vw;
  height: 38px;
  background: rgb(255, 255, 255);
  position: fixed;
  z-index: 800;
  top: 70px;
  padding: 0 7%;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}
.path p {
  font-size: 0.8em;
  line-height: 38px;
  opacity: 0.8;
}
.path p .rightChvrn {
  width: 0.4em;
  margin: 0 0.8em;
}

.main {
  margin: 100px 0 0 0;
  padding: 0 7%;
  display: flex;
  align-items: flex-start;
}
.main .aside {
  width: 20%;
  padding-top: 80px;
}
.main .aside ul {
  position: fixed;
}
.main .aside ul li {
  font-size: 0.9em;
  line-height: 2.4em;
  color: #bbb;
  cursor: pointer;
}
.main .aside ul .nw {
  color: #0c5c97;
}
.main .section {
  width: 80%;
  min-height: 90vh;
  padding-top: 80px;
}
.main .section .title {
  font-size: 1.7em;
  font-weight: 600;
  text-align: center;
}

/* 별도 공통 요소 */
/* 목록 */
.list {
  border-top: 2px solid #333;
  margin-top: 30px;
}
.list .listArticle {
  border-bottom: 1px solid #999;
}

/* 페이징 */
.page ul {
  padding-top: 1.3em;
  display: flex;
  justify-content: center;
}
.page ul li {
  padding: 0 0.8em;
  cursor: pointer;
  font-size: 0.9em;
  color: #999;
}
.page ul li:hover {
  color: #333;
}
.page ul li div {
  width: 0.5em;
}
.page ul .pageOn {
  color: #0c5c97;
}

.footer {
  position: relative;
  background: #ddd;
  z-index: 900;
}
.footer p, .footer span, .footer li {
  color: #777;
}
.footer .footerTop {
  height: 36px;
  padding: 0 7%;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footerTop .footerTopL, .footer .footerTop .footerTopR {
  width: auto;
  display: flex;
  justify-content: space-between;
}
.footer .footerTop .footerTopL p, .footer .footerTop .footerTopR p {
  font-size: 0.8em;
  cursor: pointer;
}
.footer .footerMain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3em 7%;
}
.footer .footerMain .footerSectionL {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  padding: 1em 0;
}
.footer .footerMain .footerSectionL p {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1.7em;
  padding: 0 4em 0 0;
}
.footer .footerMain .footerSectionL p span {
  font-size: 1em;
  padding-right: 1.6em;
  font-weight: 400;
}
.footer .footerMain .footerSectionL p br {
  padding: 0 4em 0 0;
}
.footer .footerMain .footerSectionL p:first-child {
  padding: 0;
}
.footer .footerMain .footerSectionM {
  min-width: 1em;
}
.footer .footerMain .footerSectionR {
  min-width: 108px;
}
.footer .footerMain .footerSectionR .footerLogo {
  height: 1.5em;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footerBottom {
  border-top: 1px solid #ccc;
}
.footer .footerBottom p {
  font-size: 0.8em;
  text-align: center;
  line-height: 32px;
}

@media all and (max-width: 600px) {
  /* 모바일 header */
  .mobileHeader {
    width: 100%;
    background: #fff;
    position: fixed;
  }
  .mobileHeader .nav .mobileMenuToggler {
    width: 2em;
    height: 2em;
    cursor: pointer;
    opacity: 0;
  }
  .mobileHeader .nav .mobileMenuToggler:checked ~ .menuBox {
    width: 44%;
  }
  .mobileHeader .nav .mobileMenuToggler:checked ~ .menuBox .mobileMenu {
    transition: visibility 0.3s ease;
    transition-delay: 0.1s;
    visibility: visible;
  }
  .mobileHeader .nav .menuBar {
    position: absolute;
    top: 0.6em;
    cursor: pointer;
  }
  .mobileHeader .nav .menuBar svg path {
    fill: #999;
  }
  .mobileHeader .nav .menuBox {
    background: rgba(255, 255, 255, 0.9);
    width: 0;
    height: 100vh;
    position: fixed;
    top: 60px;
    right: 0;
    transition: all 0.3s ease;
  }
  .mobileHeader .nav .menuBox ul {
    display: inline-block;
  }
  .mobileHeader .nav .menuBox ul li {
    width: 100%;
    line-height: 3.6em;
    color: #333;
  }
  .mobileHeader .nav .menuBox ul li a {
    color: #333;
  }
  .mobileHeader .nav .menuBox .mobileMenu {
    width: 100%;
    visibility: hidden;
  }
  .mobileHeader .nav .menuBox .mobileMenu .menuList {
    width: 100%;
    background: rgb(245, 245, 245);
    background: rgb(207, 233, 255);
    background: rgb(253, 207, 49);
    background: rgb(255, 234, 61);
    border-bottom: 1px solid rgba(12, 92, 151, 0);
  }
  .mobileHeader .nav .menuBox .mobileMenu .menuList .menuListLink {
    padding: 0 17%;
    display: inline-block;
    width: inherit;
    background: rgb(255, 255, 255);
    text-align: start;
  }
  .mobileHeader .nav .menuBox .mobileMenu ul {
    width: 100%;
  }
  .mobileHeader .nav .menuBox .mobileMenu ul a li {
    padding: 0 10% 0 28%;
    border-top: 1px solid rgba(0, 0, 0, 0);
    color: #000;
    text-align: start;
    font-size: 0.8em;
    font-weight: 400;
  }
  .path, aside {
    display: none;
  }
  section {
    width: 100% !important;
  }
}/*# sourceMappingURL=common.css.map */