/* タブのスタイル */
.tab-list{
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color : black;
  border-bottom : 0px none;
  border-top-width : 1px;
  border-left-width : 1px;
  border-right-width : 1px;
  border-top-style : solid;
  border-left-style : solid;
  border-right-style : solid;
  border-top-color : #8c836c;
  border-left-color : #8c836c;
  border-right-color : #8c836c;
}
.tab-list li{
  flex: 1;
  text-align: center;
  padding : 20px 10px;
  cursor: pointer;
  border-right : 1px solid #8b836c;
}
.tab-list li:last-child{
  border-right: none;
}
.tab-list li.active{
  font-weight: bold;
  background-image : linear-gradient(#a88b5b, #000000);
}
/* コンテンツのスタイル */
.tab-content{
  display: none;
  padding : 40px;
  background-color : black;
  border-left-width : 1px;
  border-right-width : 1px;
  border-bottom-width : 1px;
  border-left-style : solid;
  border-right-style : solid;
  border-bottom-style : solid;
  border-left-color : #8b836c;
  border-right-color : #8b836c;
  border-bottom-color : #8b836c;
}
.tab-content.active{
  display: block;
}
