/* グリッドの横幅自動調整 */

.inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* innerの親要素 */

.box {
    position: relative;
    width: auto;
}

/* グリッド最大縦幅*/

.large {
    max-height: 600px;
}

.midium {
    max-height: 500px;
}

.small {
    max-height: 400px;
}

/* グリッド内ボタン */

.grid-btn {
    width: 70px;
    line-height: 1.0;
    white-space: nowrap;
}

/* グリッド1行おきの背景色 */
.wj-cell.wj-alt {
    background: #EEF1FF;
}
