
/* ------------------------------------------------------------

	フォーメーション組合せ数計算

------------------------------------------------------------ */
div.header_line {
    background-color: #0b838a;
}




/* - 組合せ数テーブルエリア
------------------------------------------------------------ */
#form_list { margin-top: 20px; }

#form_list table.basic {   }

#form_list table.basic caption.simple {  }

#form_list table.basic caption.simple > .inner {
    background-color: #37474F;
}

#form_list table.basic caption.simple > .inner > div.main {
    padding: 10px 15px;
    color: #fff;
}

#form_list table.basic caption.simple > .inner > div.opt {
    font-size: 0;
    padding-right: 10px;
    color: #fff;
}

#form_list table.basic caption.simple > .inner > div.opt ul.note_list {
    display: inline-block;
    font-size: 1.3rem;
}

#form_list table.basic caption.simple > .inner > div.opt ul.note_list > li {
    font-size: 1.1rem;
}


#form_list table.basic thead > tr > th {
    background-color: #f9f5de;
    color: #333;
    padding: 10px 5px;
}

#form_list table.basic thead > tr > th:first-child {
    width: 80px;
    padding: 10px 5px;
}

#form_list table.basic tbody > tr > th {
    box-sizing: border-box;
    padding: 10px 5px;
    width: 80px;
    font-size: 1.2rem;
}

#form_list table.basic tbody > tr > td {
    text-align: center;
    padding: 10px 5px;
}

#form_list table.basic tbody > tr > td.blank {
    background-color: #f3f3f3;
}


/* ----- クリアボタン ----- */
input[type="reset"] {
	font-size: 1.8rem;
    /*padding: 20px 0;*/
    padding: 10px 0;
    width: 200px;
    
    /*
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid #d3d3d3;
    transition: all 140ms ease-in-out;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
    padding: 6px 30px;
    color: #555;
    background-color: #fff;*/
}

/*
input[type="reset"]:hover,
input[type="reset"]:focus {
    color: #333;
	border-color: #888;
	background-color: #f7f7f7;
}
*/


.clear_btn { text-align: center; }


/* - 組合せ数表示エリア
------------------------------------------------------------ */
#form_result { margin-top: 30px; }

#form_result .panel > h2.sub_header {
    text-align: center;
    font-size: 1.5rem;
}

#form_result .grid {
    display: table;
    margin: 0 auto;
}

#form_result .grid > .cell {
    display: table-cell;
    vertical-align: top;
}

#form_result ul.result_list { font-size: 0; }

#form_result ul.result_list > li {
    font-size: 1.6rem;
    padding: 5px 0;
    display: inline-block;
    margin-right: 20px;
}

#form_result ul.result_list > li input[type="text"] {
    font-size: 1.8rem;
    text-align: center;
    width: 70px;
    margin-right: 5px;
    text-align: right;
    padding: 4px;
}

#form_result ul.result_list > li label > span {
    font-size: 1.3rem;
}



@media screen and (max-width: 959px) {
    
    #form_result ul.result_list > li { display: block; }
    
}

@media screen and (max-width: 767px) {
    div.scr {
        width: 100%;
        overflow-x: auto;
    }
    
    div.scr > table.basic { width: 768px; }
}

@media screen and (max-width: 479px) {
    
    #form_result .grid > .cell.left {
        padding-right: 10px;
    }
    
    #form_result .grid > .cell.right {
        padding-left: 10px;
    }
    
    #form_result ul.result_list > li {
        font-size: 1.3rem;
        margin-right: 0;
    }
    
}

@media screen and (max-width: 359px) {
    
    #form_result ul.result_list > li input[type="text"] {
        font-size: 1.3rem;
        width: 50px;
    }
    
}



