/* ==========================================
このファイルは全ての画面に適用するスタイルシート 
============================================= */

/* --- 全体 --- */
html,
body {
    width: 100%;
    min-height: calc(var(--vh, 1vh) * 100);
    background-color: #c6f3ff;
    position: relative;
}
main {
    margin: 0;
    padding: 0px 0px 40px 0px;
}
/* --- Copyright --- */
footer {
    width: 100%;
    text-align: center;
    vertical-align: middle;
}
/* --- バージョン情報 --- */
.version-area {
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 10px;
}
footer {
    position: absolute;
    bottom: 0;
}
.copyrights {
    color: black;
    font-size: 15pt;
}
h3 {
    margin: 15px 0 0 0;
}
.has-error {
    position: relative;
}
.has-error > .form-control-feedback {
    display: block;
}
.form-control-feedback {
    display: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.input-label {
    margin-bottom: 3px;
}
.container-max-width {
    max-width: 700px !important;
}