@charset "euc-jp";
/* CSS Document */

#rankWrapper{width:100%;max-width:800px;margin:0 auto;padding:5px;}

section{margin-bottom:50px; width: 800px;}

section h2{font-size:0.95em;background:#f4efd8;padding:8px 20px ;font-weight: bold;color:#745028; line-height: 13px;}
section h2 img{margin-right: 5px;}
section h2 a{display:inline-block;font-size:0.8em; margin-left:15px;background:#745028;color:#fff;padding:5px 8px;border-radius:3px;}
section h2 a:hover{background:#f08300;}


section ul{display:flex;}
section ul li{flex-basis:33.333%;margin-right:10px;padding:3px;}
section ul li:last-child{margin-right:0;}

ection dl{padding:10px;border-radius:5px;transition:0.2s;}
section a:hover{opacity:1.0;}
section a:hover dl{opacity:0.5;}
section dl dd{font-size:0.9em;line-height:150%;margin-top:5px;}
section dl dd img{width:100%;}

/* ランク表示対応 */
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #f08300;
  display: block;
  order: -1;
}
.tab-label {
  color: #745028;
  font-size: 0.9em;
  background: #f4efd8;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 5px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: #f08300;
  color: #fff;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .5s opacity;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}


/*
/* ランク表示対応 
section dt img{visibility:hidden;}
section dl{position:relative;}



 dt::before{display:block;content:"";position:absolute;top:10px;color:#fff;padding:0 10px;}
section li:first-child dl dt::before{content:"1st";background:#fc0;}
section li:nth-child(2) dl dt::before{content:"2nd";background:#999;}
section li:nth-child(3) dl dt::before{content:"3rd";background:peru;}*/
