@charset "UTF-8";

/* ====================================================================================== */
/* breadcrumb list */
/* ====================================================================================== */
.frame_breadcrumb {
  --b-height: 40px;
  --bbg-color: #f6f6f6;
  --bf-color: #664f4f;
}

@media screen and (min-width: 991px) {
  .frame_breadcrumb {
    --b-height: 50px;
  }
}

.frame_breadcrumb {
  background-color: var(--bbg-color);
  border-top: 1px solid #747474;
  color: var(--bf-color);
  font-size: 0.8rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.frame_breadcrumb::after,
.frame_breadcrumb::before {
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 8px;
  z-index: 1;
}

.frame_breadcrumb::after {
  background: linear-gradient(90deg, transparent, var(--bbg-color));
  right: 0;
}

.frame_breadcrumb::before {
  background: linear-gradient(90deg, var(--bbg-color), transparent);
  left: 0;
}

.list_breadcrumb {
  display: flex;
  height: 100%;
}

.frame_breadcrumb {
  height: var(--b-height);
}

/* breadcrumb body */
.list_breadcrumb .elm {
  flex: 0 0 auto;
  position: relative;
}

.list_breadcrumb .elm:not(:first-child) {
  padding-left: 10px;
}

.list_breadcrumb .elm:not(:last-child) {
  padding-right: 4px;
}

.list_breadcrumb .elm:not(:first-child)::after {
  border-width: 1px 1px 0 0;
  border-style: solid;
  content: '';
  display: block;
  height: 10px;
  left: 0;
  position: absolute;
  top: 14px;
  transform: rotate(45deg);
  width: 10px;
}

@media screen and (min-width: 991px) {
  .list_breadcrumb .elm:not(:first-child)::after {
    top: 20px;
  }
}

.list_breadcrumb a {
  color: inherit;
  display: block;
  text-decoration: underline;
}

.bc_item {
  color: inherit;
  display: block;
  height: var(--b-height);
  line-height: var(--b-height);
  min-width: 50px;
  padding-left: 10px;
  text-align: center;
}

.list_breadcrumb .elm:last-child .bc_item {
  padding-right: 10px;
}

.frame_breadcrumb .slide_inner {
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
}

@media screen and (min-width: 991px) {
  .frame_breadcrumb .slide_inner {
    margin: auto;
    width: var(--pc-width);
  }
}
