@charset "utf-8";

/***************************************
			基本共通スタイル
***************************************/
.tab-group{
  text-align: center;
  margin-bottom: 30px;
}
.tab{
	padding: 8px 14px;
	margin-right: 10px;
	margin-bottom: 10px;
	background-color: #C9BDAA;
	color: #fff;
	float: left;
	cursor: pointer;
}
.panel-group{
}
.panel{
  display:none;
}

.panel ul li{
	width: 32%;
	margin-left: 1%;
	margin-bottom: 10px;
	float: left;
}

.tab.is-active{
  background:#877964;
  color:#FFF;
  transition: all 0.2s ease-out;
}
.panel.is-show{
  display:block;
}