@charset "UTF-8";
.tab-003 {
  display: flex;
  flex-wrap: wrap;
  margin-top:20px;
  margin-right:10px;
}

.tab-003 > label {
  flex: 1 1;
  order: -1;
  min-width: 70px;
  padding: .7em 1em .5em;
  background-color: #b3dbff;
  color: #444444;
  font-weight: 600;
  font-size: .9em;
  text-align: center;
  cursor: pointer;
  border: 1px solid #4169e1;
}

.tab-003 > label:hover {
  opacity: .8;
}

.tab-003 input {
  display: none;
}

.tab-003 > div {
  display: none;
  width: 100%;
  padding: 0.5em 1em;
  background-color: #fff;
}

.tab-003 label:has(:checked) {
  border-bottom: 4px solid #4169e1;
  color: #4169e1;
}

.tab-003 label:has(:checked) + div {
  display: block;
}

.tab-003-height {
  max-height:300px;
  overflow:auto;
}

