.lnb-tabs {
  padding: 2rem;
}
.lnb-tabs__topRow {
  font-weight: 700;
  font-size: 3.1rem;
  margin-bottom: 1rem;
}
.lnb-tabs__topRow > div {
  display: inline-block;
}
.lnb-tabs__tab {
  padding: 0.5rem;
  margin-right: 1rem;
  transition: 0.2s;
}
.lnb-tabs__tab:first-child {
  padding-left: 0;
}
.lnb-tabs__tab--selected {
  color: var(--theme-accent-action);
}
.lnb-tabs__tab:hover {
  cursor: pointer;
  color: var(--theme-accent-action);
}
.lnb-tabs__contents {
  position: relative;
}
.lnb-tabs__content {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.25s;
  width: 100%;
  height: 100%;
}
.lnb-tabs__content--active {
  opacity: 1;
  z-index: 5;
}
