/* breadcrumb */

.box_pathinfo {
  position: -webkit-sticky;
  position: sticky;
  top: 74px;
  left: 0;
  z-index: 25;
  width: 100%;
  height: 54px;
  border-bottom: 1px solid rgba(229, 229, 229, 0.9);
  background-color: #fff;
  box-sizing: border-box;
}
.box_pathinfo.no_header {
  top: 0;
}
.box_pathinfo .list_path {
  padding: 17px 0 12px 32px;
  font-size: 0;
}
.box_pathinfo .list_path:after {
  display: block;
  visibility: hidden;
  height: 0;
  font-size: 0;
  clear: both;
  content: '';
}
.list_path .item_path {
  float: left;
  padding-right: 7px;
}
.list_path .link_path {
  float: left;
  font-size: 14px;
  line-height: 25px;
  color: #707070;
  letter-spacing: -0.35px;
}
.list_path .txt_arr {
  float: left;
  padding-left: 10px;
  font-size: 14px;
  line-height: 25px;
  color: #707070;
  letter-spacing: -0.35px;
}
.list_path .emph_path {
  display: block;
  font-size: 14px;
  line-height: 25px;
  color: #111;
  letter-spacing: -0.33px;
}
.item_path .box_submenu {
  display: none;
  position: absolute;
  top: 28px;
  right: 0;
}
.item_path .list_submenu {
  min-width: 129px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
.item_path .list_submenu .link_sub {
  color: #111;
  font-family: 'NotoSans Regular', 'Malgun Gothic', '맑은 고딕',
    'Apple SD Gothic Neo', '돋움', dotum, sans-serif;
  text-align: center;
}

.list_path .item_path.on {
  position: relative;
  padding-right: 0;
}
.item_path.on .box_submenu {
  display: block;
}
.item_path.on .list_submenu {
  padding-top: 10px;
  padding-bottom: 6px;
  opacity: 1;
}
.item_path.on .list_submenu .link_sub {
  padding: 7px 10px;
}
.item_path.on .list_submenu .link_sub:hover {
  color: rgba(17, 17, 17, 0.75);
}
.item_path a.emph_path {
  position: relative;
  padding-right: 14px;
}
.item_path a.emph_path:after {
  position: absolute;
  top: 9px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #111;
  transform: rotate(0);
  -webkit-transition: transform 0.25s;
  transition: transform 0.25s;
  content: '';
}
.item_path.on a.emph_path:after {
  transform: rotate(180deg);
}
