/*全体*/
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    font-size: 16px;
    padding: 10px 0px 0px 30px;
}


/*見出し*/
h1 {
    padding: 5px;
    color: #fff;
    border-radius: 10px;
    background-image: -webkit-gradient(linear, left top, right top, from(#ff3700), to(#af9200));
    background-image: -webkit-linear-gradient(left, #f83600 0%, #a88c00 100%);
    background-image: linear-gradient(to right, #f83600 0%, #dfbd12 100%);
    width: 90%;
  }

h2 {
    margin-top: 10px;
    font-size: 20px;
    color: #333;
    border-bottom: solid 3px #cce4ff;
    position: relative;
    width: 90%;
  }
  
h2:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #5472cd;
    bottom: -3px;
    width: 10%;
}
h3 {
    padding: 0px;
    margin: 0px;
    font-size: 14px;
}
.status_comment{
    font-size: 12px;
    padding: 0px ;
    margin: 0px ;
}


  
/*ボタンとドロップダウンリスト*/
input {
    padding: 5px;
    margin: 5px 0px;
    font-size: 24px;
    width: 200px;
    box-sizing: border-box;
}

button {
    padding: 10px 5px;
    margin: 10px 0px;
    font-size: 16px;
    width: 100px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}


/*計算基準選択欄*/
#inputFields > div {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}



/*結果出力テーブル*/
.resultTable {
    margin: 0px 0px 0px 0px;
    width: 450px;
    border-collapse: separate;
    text-indent: initial;
    border-spacing: 2px;
    background-color: #f9f9f9;
}
.resultTable th {
    font-size: 16px;
    width: 130px;
    height: 60px;
    text-align: center;
    background-color: #007bff;
    color: white;
    border-collapse: separate;
    border-spacing: 2px;
}
.resultTable td {
    font-size: 24px;
    padding: 0px;
    width: 180px;
    height: 60px;
    text-align: center;
    background-color: #f9f9f9;
}

/*その他*/
.memo {
    font-size: 14px;
    padding: 10px;
    width: 90%;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
}
.copy {
    font-size: 10px;
    padding: 1px;
    width: 90%;
    text-align: right;
    margin: 10px;
}

/* スマホ向けのレスポンシブデザイン */
@media (max-width:768px) {
    body {
        padding: 0px 10px;
    }
    h1 { 
        font-size: 20px;
        padding: 0px;
        color: #fff;
        border-radius: 10px;
        background-image: -webkit-gradient(linear, left top, right top, from(#ff3700), to(#af9200));
        background-image: -webkit-linear-gradient(left, #f83600 0%, #a88c00 100%);
        background-image: linear-gradient(to right, #f83600 0%, #dfbd12 100%);
        width: 90%;
      }


    h2 {
        font-size: 18px;
        width: 90%;
    }
    h3{
        padding: 0px;
        margin: 0px;
        font-size: 14px;
    }
    input {
        font-size: 24px;
        padding: 5px;
        margin: 5px 0px;
    }
    button {
        font-size: 16px;
        text-align: center;
        padding: 10px 5px;
        margin: 10px 0px ;
    }
    /*結果テーブル*/
    .resultTable {
        margin: 0px;
        width: 90%;
        border-collapse: separate;
        text-indent: initial;
        border-spacing: 2px;
        background-color: #f9f9f9;
    }
    .resultTable th {
        font-size: 14px;
        width: 35%;
        height: 60px;
        text-align: center;
        background-color: #007bff;
        color: white;
        border-collapse: separate;
        border-spacing: 2px;
    }
    .resultTable td {
        font-size: 24px;
        padding: 0px;
        width: 65%;
        height: 60px;
        text-align: center;
        background-color: #f9f9f9;
    }
    
    /*その他*/
    .memo {
        font-size: 14px;
        padding: 10px;
        width: 90%;
        background-color: #f9f9f9;
        border: 1px solid #ccc;
        border-radius: 5px;
        margin-top: 10px;
    }
}