.tab-wrap {
  --tab-color: lightgray;
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}

.tab-label {
  order: -1;
  /* z-index: 1; */
  cursor: pointer;
  /* flex: 1; */
  text-decoration: underline;
}

.tab-label:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* .tab-switch:checked+.tab-label {
  background-color:var(--active-tab-color);
} */

.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px 0 0 0;
  opacity: 1;
  transition: .5s opacity;
}

.tab-switch:checked+.tab-label {
  font-weight: bold;
}

/*タブのスタイル*/
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color:var(--active-tab-color);
  display: block;
  order: -1;
}

/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

