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

@media screen and (min-width: 761px) {
	
/*タブのスタイル*/
.tab_item {
  /* width: calc(100%/5);*/
  width:136px;
  height: 18px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 18px;
  font-size: 14px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  /* transition: all 0.2s ease; */
}

}

@media screen and (max-width: 760px) {

.tab_item {
  width: 42vw;
  height: 18px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 18px;
  font-size: 13px;
  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: 20px 0;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#allgame:checked ~ #allgame_content,
#action:checked ~ #action_content,
#adventure:checked ~ #adventure_content,
#puzzle:checked ~ #puzzle_content,
#logic:checked ~ #logic_content,
#race:checked ~ #race_content,
#rpg:checked ~ #rpg_content,
#shooting:checked ~ #shooting_content,
#simulation:checked ~ #simulation_content,
#sports:checked ~ #sports_content,
#strategy:checked ~ #strategy_content,
#table:checked ~ #table_content
{
  display: block;
}

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


#game_rank{
text-align:left;
}

#game_rank .ogt{
color:#003366;
text-align:left;
font-weight:bold;
background:#E8F3FF;
padding:5px 3px 5px 10px;
border-top:1px solid #999999;
border-bottom:1px solid #999999;
}

#game_rank .ogb{
text-align:left;
padding:3px;
line-height:1.6;
}

#game_rank .og_img{
float:left;margin-right:5px; margin-bottom:3px;
}

#game_rank .ogb a:link,
#game_rank .ogb a:visited,
#game_rank .ogb a:active{
display: block;
text-decoration: none;
text-align:left;
padding: 5px 5px 5px 15px;
color: #000000;
}

.rank_bottom_link{
text-align:right;
padding: 5px 15px;
background:#F2F2F2;
}