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

/*タブのスタイル*/
.tab_item {
  width: calc(100%/9);
  height: 50px;
/*  border-bottom: 3px solid #5ab4bd; */
  border-bottom: 3px solid #285e92;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  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;
}

/*選択されているタブのコンテンツのみを表示*/
#tab01:checked ~ #tab01_content, 
#tab02:checked ~ #tab02_content, 
#tab03:checked ~ #tab03_content {
  display: block;
}
#tab04:checked ~ #tab04_content, 
#tab05:checked ~ #tab05_content, 
#tab06:checked ~ #tab06_content {
  display: block;
}
#tab07:checked ~ #tab07_content, 
#tab08:checked ~ #tab08_content, 
#tab09:checked ~ #tab09_content {
  display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
/*  background-color: #5ab4bd; */
background-color: #285e92;
  color: #fff;
}
