﻿@charset "UTF-8";
/* CSS Document */


/* ==========================================

検索内タブ切り替え（70年のあゆみ）

   ========================================= */
#tab{
	width: 100%;
	max-width: 1000px;
	margin: 0px auto 0 auto;
padding-top: 20px;
	z-index: -1;
}
/* スマホ用***************** */
@media (max-width: 749px) {
	/*タブ切り替えの中身のスタイル*/
#tab {
padding-top: 10px;
}
}
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 0px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  /*width: 700px;*/
	width: 100%;
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/2);
  height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
	font-weight: bold;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}
/* スマホ用***************** */
@media (max-width: 749px) {
	/*タブ切り替えの中身のスタイル*/
.tab_item {
	height: 30px;
  line-height: 30px;
  font-size: 14px;
}
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
	border: solid 0px;
}


/*選択されているタブのコンテンツのみを表示*/
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content{
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}





/* =======================================================

　 ディバイス設定

   ===================================================== */
/* スマホ用***************** */
@media (max-width: 749px) {
	/*タブ切り替えの中身のスタイル*/
.tab_content {
  padding: 20px 20px 0;

}
}

/* タブレット用 ***************** */
@media (min-width: 750px) and (max-width: 1023px) {}
/* Desktop ***************** */
@media (min-width: 1024px) {}