.tabs__items {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.tabs__item {
  padding: 8px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  color: #666;
  background: #fff;
}
.tabs__item:hover {
  border-color: #006967;
  color: #006967;
}
.tabs__item.is-active {
  background: #006967;
  border-color: #006967;
  color: #fff;
}
.tabs__contents > .tabs__content {
  display: none;
}
.tabs__contents > .tabs__content.is-active {
  display: block;
}
.tabs__contents > .tabs__content > * {
  margin-bottom: 20px;
}
.tabs__title {
  font-size: 24px;
}
.tabs__link-more {
  background: url(../image/more.png) no-repeat right center;
  padding-right: 20px;
  font-size: 14px;
  align-items: center;
  background-size: 16px;
}

/*# sourceMappingURL=tabs.css.map */
