.section-topbar {
  padding: 0rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e8eaeb;
  background: #fff;
  width: 100%;
}
.section-topbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 4.4rem;
}
.breadcrumb-wrap span {
  display: inline-block;
  font-size: 2.4rem;
  color: #05141f;
  font-weight: 600;
}
.breadcrumb-wrap .arrow-r {
  position: relative;
}
.breadcrumb-wrap .arrow-r::after {
  content: '';
  width: 2.8rem;
  height: 2.8rem;
  background: url(../img/ic_arrow_forward.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -3.6rem;
}

.contents-anchor ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.anchor-list a {
  display: block;
  padding: 2.4rem 3.2rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #303c47;
}
.anchor-list a.active {
  color: #05141f;
  border-bottom: 3px solid #05141f;
  padding-bottom: 2.1rem;
}

@media screen and (max-width: 480px) {
  .topbar-left {
    display: none;
  }
  .section-topbar {
    padding: 0;
    overflow-x: scroll;
  }
  .anchor-list a {
    padding: 1.6rem 1.9rem;
  }
  .anchor-list a.active {
    padding-bottom: 1.3rem;
  }
}
