﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kosugi&family=Lato&display=swap');

/* シミュレーション計算方法 */

.usageEnergyBox {
    font-size: 16px;
}
    .usageEnergyBox .lblUsageEnergy {
        display: block;
    }


/* シミュレーション計算方法（月選択） */
.selMonthBox {
    border-top: 1px solid silver;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-top: 15px;
}
    .selMonthBox select {
        width: 80px;
        height: 30px;
    }
    .selMonthBox input {
        width: 100px;
        height: 30px;
        text-align:right;
    }

    /* シミュレーション計算方法（月選択） */
    .selMonthBox select.selLastMonth {
        width: 110px;
        height: 30px;
    }

/* シミュレーション計算方法（年間：月ごと） */
.inpYearKwhBox {
    border-top: 1px solid silver;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-top: 15px;
}

    .inpYearKwhBox dl {
        padding: 0;
        margin: 10px;
    }
        .inpYearKwhBox dl dt, dd {
            display: inline-block;
            padding: 0;
            margin: 0;
            vertical-align: bottom;
        }
        .inpYearKwhBox dl dt {
            width: 40px;
            font-weight: normal;
        }
        .inpYearKwhBox dl dd input {
            width: 100px;
            height: 30px;
            text-align: right;
        }
        .inpYearKwhBox dl dd span {
            vertical-align: bottom;
            font-size: 13px;
            margin-left: 5px;
        }
    
        .inpYearKwhBox div{
            display: inline-block;
    }


    .submit {
        padding-bottom: 20px;
        margin-bottom: 0;
    }
        .submit .button-arrow-inner {
            text-align: center;
            box-sizing: border-box;
            display: block;
            border: 1px solid midnightblue;
            background: #447fff;
            color: #fff;
            padding: 10px;
            line-height: 1.4;
            max-width: 420px;
            width: 100%;
        }
            .submit .button-arrow-inner:hover {
                background: #fff;
                color: navy;
            }
        .submit .button-arrow-inner:disabled {
            border: 1px solid silver;
            background: whitesmoke;
            color: darkgray;
        }
