@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600&display=swap");
.theme {
  color: #006ead;
}

.theme2 {
  color: red;
}

.fwb {
  font-weight: bold;
}

.df {
  display: flex;
}

.light {
  color: #555;
}

#contentsWrap {
  padding-top: 0;
}
@media (max-width: 1024px) {
  #contentsWrap {
    padding-top: 0;
  }
}

header {
  width: calc(100% - 100px);
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(153, 153, 153, 0.233);
  z-index: 100;
  background: #fff;
  border-radius: 10px;
}

.m-headWrap {
  display: none;
}

header {
  background-image: linear-gradient(#fff 100px, #1c7ad8 100px, #1c7ad8);
}
@media (min-width: 1450px) {
  header:after {
    content: "";
    display: block;
    width: 282px;
    height: 155px;
    background: url("/img/menubg.png") no-repeat 0 center;
    position: absolute;
    left: 15%;
    top: 130px;
  }
}
header .headWrap {
  height: 100px;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-left: 40px;
  box-sizing: border-box;
}
header .headWrap h1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .headWrap h1 a {
  display: block;
  width: 190px;
  height: 78px;
  background: url("/img/logo.png") no-repeat left center/contain;
}
header .headWrap .gnb {
  display: flex;
  font-family: "Titillium Web";
  font-weight: bold;
  margin-left: auto;
  margin-right: 10%;
}
header .headWrap .gnb > li h2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 40px;
  height: 100px;
  position: relative;
  font-size: 1.5rem;
}
header .headWrap .gnb > li h2 a:before {
  content: "";
  display: block;
  width: 0%;
  height: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  background: #006ead;
  transition: 0.2s;
}
header .headWrap .gnb > li h2 a:after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  inset: 0;
  background: #006ead;
  opacity: 0.05;
  z-index: -1;
  transition: transform 0.3s ease;
  transform-origin: bottom right;
  transform: scaleX(0);
}
header .headWrap .gnb > li h2 a:hover {
  color: #006ead;
}
header .headWrap .gnb > li h2 a:hover:before {
  width: 100%;
}
header .headWrap .gnb > li h2 a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header .headWrap .gnb > li ul h3 > a {
  color: #fff;
}
header .headWrap .gnb > li ul h3 > a:hover {
  background-color: rgb(18, 0, 116);
}
header .headWrap .side {
  background-image: linear-gradient(to right, #f14b34, #f8b843);
  height: 100%;
  border-radius: 0 10px 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .headWrap .side li {
  margin-left: 10px;
}
header .headWrap .side li a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 210px;
}
header .headWrap .side li a img {
  margin-right: 10px;
}
header .headWrap .hamBtn {
  height: 50px;
  width: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: none;
  transition: 0.2s;
}
header .headWrap .hamBtn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #232323;
  margin: 2.5px 0;
  position: relative;
}
header .headWrap .hamBtn span em {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #232323;
}
header .headWrap .hamBtn.on {
  transform: rotate(45deg);
}
header .headWrap .hamBtn.on span em {
  transform: rotate(90deg);
}
header .headWrap .hamBtn.on span:first-of-type, header .headWrap .hamBtn.on span:last-of-type {
  transform: scaleX(0);
}

@media (min-width: 1024px) {
  header.drop {
    border: 0;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
  }
  header.drop:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    left: 0;
    top: 100px;
  }
  header.drop .headWrap {
    align-items: flex-start;
    transition: 0.6s;
    transition-timing-function: linear;
    overflow: hidden;
    height: auto;
    max-height: 100px;
  }
  header.drop .headWrap h1 {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header.drop .headWrap .gnb > li {
    position: relative;
  }
  header.drop .headWrap .gnb > li ul {
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }
  header.drop .headWrap .gnb > li ul li h3 > a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
  }
  header.drop .headWrap .side {
    height: 100px;
    align-items: center;
  }
  header.drop .headWrap:hover {
    max-height: 500px;
  }
}

@media (max-width: 1024px) {
  header {
    width: 100% !important;
    top: 0;
    border-radius: 0 0 10px 10px;
  }
  header .headWrap {
    padding-left: 15px;
    height: 50px !important;
  }
  header .headWrap h1 {
    height: 100%;
  }
  header .headWrap h1 a {
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .headWrap .gnb {
    display: none !important;
  }
  header .headWrap .side {
    display: none !important;
  }
  header .headWrap .hamBtn {
    display: flex !important;
  }
  .m-headWrap {
    position: fixed;
    display: block;
    right: -120%;
    transition: 0.5s;
    top: 0;
    padding-top: 50px;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    box-sizing: border-box;
    background-color: #fff;
  }
  .m-headWrap.on {
    right: 0;
  }
  .m-headWrap .side {
    display: flex;
    font-size: 12px;
    justify-content: center;
    background-color: #232323;
  }
  .m-headWrap .side li {
    width: 25%;
  }
  .m-headWrap .side li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    color: #fff;
  }
  .m-headWrap .gnb > li h2 > a {
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    align-items: center;
    height: 55px;
    box-sizing: border-box;
    font-size: 16px;
    background: url("/img/ui/fold.png") no-repeat 95% 50%;
  }
  .m-headWrap .gnb > li h2 > a.on {
    background: url("/img/ui/foldup.png") no-repeat 95% 50%;
  }
  .m-headWrap .gnb > li ul {
    overflow: hidden;
    display: none;
  }
  .m-headWrap .gnb > li ul li h3 > a {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    color: #444;
    background-color: #f2f4f8;
    padding: 12px 0;
    padding-left: 20px;
  }
}
footer {
  background-color: #006ead;
  color: #fff;
  padding: 80px 0;
}
footer a {
  color: #fff;
}
footer .wrap {
  width: calc(100% - 40px);
  max-width: 1720px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  footer .wrap {
    width: calc(100% - 20px);
  }
}
footer .foot_top {
  border-bottom: 1px solid #fff;
}
footer .foot_top .wrap {
  padding: 15px 0;
  position: relative;
}
footer .foot_top .wrap .foot_nav {
  display: flex;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}
footer .foot_top .wrap .foot_nav li {
  width: 20%;
}
footer .foot_top .wrap .foot_nav li:not(:last-child) {
  position: relative;
}
footer .foot_top .wrap .foot_nav li:not(:last-child) a {
  position: relative;
}
footer .foot_top .wrap .foot_nav li:not(:last-child) a:after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
footer .foot_top .wrap .foot_nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
}
footer .foot_top .wrap .sns_links {
  position: absolute;
  display: flex;
  right: 0;
  top: 0;
}
footer .foot_top .wrap .sns_links li:not(:last-child) {
  margin-right: 10px;
}
footer .foot_top .wrap .sns_links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}
footer .foot_top .wrap .sns_links li a img {
  display: block;
  width: 25px;
}
@media (max-width: 1024px) {
  footer .foot_top .wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  footer .foot_top .wrap .sns_links {
    position: relative;
    justify-content: center;
    margin-bottom: 20px;
  }
}
footer .foot_bottom {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .foot_bottom ul {
  font-size: 14px;
  display: flex;
}
footer .foot_bottom ul:not(:last-child) {
  margin-bottom: 14px;
}
footer .foot_bottom ul li:not(:last-child) {
  margin-right: 20px;
  position: relative;
}
footer .foot_bottom ul li:not(:last-child):after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0;
  }
  footer .foot_top .wrap .foot_nav li a {
    font-size: 12px;
  }
  footer .foot_bottom {
    padding-top: 20px;
  }
  footer .foot_bottom ul {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .foot_bottom ul:not(:last-child) {
    margin-bottom: 0;
  }
  footer .foot_bottom ul li {
    margin-bottom: 8px;
    line-height: 1.4;
  }
  footer .foot_bottom ul li:not(:last-child) {
    margin-right: 0;
    position: relative;
  }
  footer .foot_bottom ul li:not(:last-child):after {
    content: "";
    display: block;
    width: 1px;
    height: 0;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
  }
}/*# sourceMappingURL=nav.css.map */