/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 0;
  padding-bottom: 0;
  background-color: #fff;
  width:100%;
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
  width:50%;
  height: 50px;
  border-bottom: 3px solid #b79433;
  background-color: #f8f3e9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #ff9900;
  text-decoration:underline;
  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 {
  clear: both;
  overflow: hidden;
  display: none;
  background-color:#f8f3e9;
  border-bottom:3px solid #beae82;
}


/*選択されているタブのコンテンツのみを表示*/
#shinchaku:checked ~ #shinchaku_content,
#newsrelease:checked ~ #newsrelease_content {
  display: block;
}

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