/*タブ切り替え全体のスタイル*/
.tabs {
  margin-right : auto;
  margin-top: 10px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 800px;}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/5);/*タブを増やしてもこのままで！*/
  height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content,
#neoyuni:checked ~ #neoyuni_content,
#karen:checked ~ #karen_content,
#ayabe:checked ~ #ayabe_content,
#heriosu:checked ~ #heriosu_content,
#hishimirakuru:checked ~ #hishimirakuru_content,
#rubby:checked ~ #rubby_content,
#suiipu:checked ~ #suiipu_content,
#nishino:checked ~ #nishino_content{/*タブを増やしたらここを修正するように！*/
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}