:root{
    --form-control-label-width: 170px;
}
/* ローディング */
#is-loading {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #f8f9fa;
    text-align: center;
    z-index: 8;
}
#inner_loading {
    position: absolute;
    top: 50%;
    left: 50%;
}
#loading {
    position: absolute;
    transform: translate(-50%,-50%);
}

/* portalのリンク */
.card .card-body a {
    transition: color .3s;
}
.card .card-body a:hover {
    color: #343a40;
    font-weight: bold;
}
.form-group>label {
    padding-top: 1rem;
    width: var(--form-control-label-width);
    max-width: var(--form-control-label-width);
    float: left;
    margin-bottom: 0px;
}
.label_for_input_file {
    width: var(--form-control-label-width);
    max-width: var(--form-control-label-width);
}
.form-group>.form-control {
    width: calc(100% - var(--form-control-label-width) - 10px);
}
.form-control::placeholder {
    font-size: 0.7rem;
}
.Alabel_required::after {
    padding: 0px 6px 0px 6px;
    border-radius: 4px;
    font-size: 1em;
    color: red;
    content: "*";
}
.label_required::after {
margin-left: 1.0em;
padding: 0px 6px 0px 6px;
border-radius: 4px;
font-size: 0.6em;
color: white;
background-color: #C44;
content: "必須";
}

.label_deisabled::after {
    margin-left: 1.0em;
    padding: 0px 6px 0px 6px;
    border-radius: 4px;
    font-size: 0.6em;
    color: white;
    background-color: #888;
    content: "変更不可";
}