<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*最初のSection*/
section#pageTop{
  background: url(../img/member/topBg.jpg) center top / cover no-repeat;
}
@media screen and (max-width:600px){
  section#pageTop{
    background: url(../img/member/topBg_mini.jpg) center bottom / cover no-repeat;
  }
}
  section#sectionFirst h2 img{
    width: 220px;
    height: auto;
  }


/*スタッフ一覧*/
section#member-list{
  background-color: #000;
  color: #fff;
  padding: 20px;
  width: calc(100% - 40px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
  section#member-list table{
    width: 100%;
  }
    section#member-list th,
    section#member-list td{
      padding: 10px;
      /*white-space: nowrap;*/
      text-align: center;
      border: solid 1px #ccc;
    }
    section#member-list th.title{
      background-color: #555;
      width: 5em;
    }
    section#member-list th.title+td{
      background-color: #1a649c;
      background-color: #fff;
      color: #000;
    }


/*タブ*/
section#member-list ul.tab{
  height          : 35px;
  width: 100%;
  border-bottom   : solid 1px #fff;
  margin          : 0 0 5px 0;
  padding         : 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
section#member-list ul.tab li{
  margin          : 0 5px;
  font-size       : 16px;
  width: calc(25% - 10px);
}
section#member-list ul.tab li a{
  display         : block;
  width           : 100%;
  height          : 30px;
  padding-top     : 5px;
  text-align      : center;
  text-decoration : none;
  background-color: #999;
  color: #000;
  -webkit-border-top-left-radius : 5px;
  -webkit-border-top-right-radius: 5px;
     -moz-border-top-left-radius : 5px;
     -moz-border-top-right-radius: 5px;
          border-top-left-radius : 5px;
          border-top-right-radius: 5px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
section#member-list ul.tab li a:hover{
  background-color: #fff;
}
section#member-list ul.tab li a.selected{
  cursor          : default;
  background-color: #000;
  color           : #fff;
  border          : solid 1px #fff;
  border-bottom   : solid 1px #000;
}
/*パネル*/
section#member-list ul.grade{
  display: none;
}
section#member-list ul.grade.selected{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
  section#member-list ul.grade li{
    width: calc(25% - 10px);
    margin: 5px;
  }
  @media screen and (max-width:900px){
    section#member-list ul.grade li{
      width: calc(33.33333% - 10px);
    }
  }
  @media screen and (max-width:700px){
    section#member-list ul.grade li{
      width: calc(50% - 10px);
    }
  }
td.pitcher{
  background-color: #000acd;
}
td.catcher{
  background-color: #ff0b67;
}
td.infielder{
  background-color: #9c6c1a;
}
td.outfielder{
  background-color: #2d9a14;
}
td.coach{
  background-color: #85508b;
}
td.manager{
  background-color: #ff7290;
}
td.name{
  font-size: 16px;
  background-color: #ddd;
  color: #000;
}</pre></body></html>