@charset "UTF-8";
/*
 * index.css
 *
 */

/*==================================
             shikifuton
==================================*/
#top_copy_right img {
	border:#666666 solid 1px;
}
#top_copy h3 {
	background-image:url(../img/item_ttl_2.jpg);
	background-repeat:no-repeat;
}
/*タブ切り替え全体のスタイル*/
.tabs {
  background-color: #fff;
  width: 100%;
  margin: 60px auto 40px;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/2);
  height: 60px;
  border-bottom:2px solid #1D4492;
  background-color: #EEE;
  line-height: 60px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  box-sizing:border-box;
  border-right:#ccc solid 1px;
}
.tab_item:last-of-type {
  border-right:none;
}
.tab_item:hover {
  opacity: 0.75;
}

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

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


/*選択されているタブのコンテンツのみを表示*/
#free:checked ~ #free_content,
#air:checked ~ #air_content {
  display: block;
}

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

/*タブの中のリスト*/
.tab_content_description li {
	border-bottom:#ccc solid 1px;
	font-size:0;
}
.tab_content_description li:last-of-type {
	border-bottom:none;
}
.tab_content_description li a {
	display:block;
}
.tab_content_description li p a:hover {
	text-decoration:none;
}
.tab_content_description li a .works_copy {
	color:#1d3994;
}
.tab_content_description li a:hover .works_copy,
.tab_content_description li a:hover .news_list .works_copy {
	text-decoration:underline;
}
.tab_content_description time,
.tab_content_description p {
	display:inline-block;
	font-size:16px;
	vertical-align:middle;
}
.tab_content_description time {
	width:95px;
	color:#666;
}