@charset "UTF-8";
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : layout
    * @comment    : 사이트 공통 레이아웃(navi 및 footer 포함)
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.wrap {
  min-width: 1100px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.navi-wrap {
  padding: 0 20px;
  border-bottom: 1px solid #656971;
  background-color: #fff;
}

.navi {
  overflow: hidden;
}

.navi__depth1 {
  position: relative;
  float: left;
  width: calc(100% / 10);
}

.navi__depth1::after {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: #efefef;
  position: absolute;
  /* top: (li높이 - 라인높이) / 2; */
  top: 10px;
  right: 0;
}

.navi__depth1:last-child::after {
  content: '';
  display: none;
}

.navi__depth1__link {
  display: block;
  font-family: "NotoSansKR-Bold";
  color: #fff;
  padding: 8px 5px;
  text-align: center;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.7);
  transition: 0.3s;
}

.navi__depth1__link:hover {
  background-color: #54cff0;
  color: #fff;
}

.navi__depth1__link--active {
  background-color: #54cff0;
  color: #fff;
}

.main-container {
  margin-top: 150px;
}
