/*  */
.r{color: red;}

/* statsの大枠 投手,野手 */
.sWrap{margin: 2rem 0;}
.st{
    padding: 1rem;
    background: #eee;
    border-radius: 1rem;
    box-shadow: 0 0 1rem #aaa inset;
}
.st span{
    color: #aaa;
    padding: .5rem;
    margin: 0.5rem;
    display: inline-block;
    white-space: nowrap;
}
.st a:hover{ /* stats */
    -webkit-text-decoration: underline;
    text-decoration: underline;
}

/* セパ tab */
.tabs{
    grid-template-columns: repeat(2, 1fr);
}
/* セパ 選手枠 */
#r>div{display: none;}
#r>div.in{display: block;animation: fadein .3s;}

/* セパ 選手テーブル */
.z tr:nth-child(even){
    background: #f7f7f7;
}
.s{
    width: 100%;
    table-layout: fixed;
    text-align: center;
    font-size: min(3vw,.9rem);
}
.s th{
    color: #fff;
    padding: .5rem 0;
    background: #333;
    top: 70px;  /* header幅 */
    position: -webkit-sticky;
    position: sticky;
}
/* 縦表示 */
th span{
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: pre;
    text-orientation: upright;
}

.s td{padding: .2rem 0;}
.s .n{width: 16%;} /* 選手名 ここデバイスで怪しいかも */
.s .l{width: 12%;} /* 防御率,投球回 */
.s tr{box-shadow: 0 0 1px #333 inset;}
.s td{
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 0 1px #333;
}
.s td.in{background: darkgoldenrod;color: #fff;}
.h{background: #eee;}
/* .hd{display: none;} */

/* 防御率 計算ツール インライン? */
#rt table{
    width: 100%;
    font-size:min(3.3vw,1rem);
}
#rt th{background: #eee;}
#rt select,
#rt input{
    /* display: inline-block; */
    text-align:center;
    width: 3rem;
    font-size:min(16px,1rem);
    padding: .5em;
    margin: 0.5em 0;
    background: #fff;
    border: 1px solid #999;
    box-sizing: border-box;
    border-radius: .5rem;
    box-shadow: .1rem .1rem .1rem 0 #aaa inset;
}
#rt select{padding: .5em 0;} /* select */
#rt tbody td{
    text-align:center;
    padding: .5rem;
}

/* media */
@media screen and (min-width:600px){
    th span{
        -webkit-writing-mode:horizontal-tb;
        -ms-writing-mode:lr-tb;
        writing-mode:horizontal-tb;
    }
}

