
body {
    background-color: #fff;
    margin: 20px 0;
    font: 13px/20px normal Helvetica, Arial, sans-serif;
    color: #4F5155;
}

code {
    font-family: Consolas, Monaco, Courier New, Courier, monospace;
    font-size: 12px;
    background-color: #f9f9f9;
    border: 1px solid #D0D0D0;
    color: #002166;
    display: block;
    margin: 14px 0 14px 0;
    padding: 12px 10px 12px 10px;
}

#body {
    margin: 0 15px 0 15px;
}

h1 {
    color: #444;
    background-color: transparent;
    border-bottom: 1px solid #D0D0D0;
    font-size: 19px;
    font-weight: normal;
    margin: 0 0 14px 0;
    padding: 14px 15px 10px 15px;
}

a {
    color: #003399;
    background-color: transparent;
    font-weight: normal;
}

.hide {
    display: none;
}

p.footer {
    text-align: right;
    font-size: 11px;
    border-top: 1px solid #D0D0D0;
    line-height: 32px;
    padding: 0 10px 0 10px;
    margin: 20px 0 0 0;
}

#container {
    margin: 10px;
    border: 1px solid #D0D0D0;
    box-shadow: 0 0 8px #D0D0D0;
}

dl {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 15px;
}
dt {
    width: 60%;
    text-align: right;
    
}
dt label {
    white-space: nowrap;
}
dd {
    width: 100%;
    text-align: left;
    margin-inline-start: 10px;
}
input,
select {
    height: 33px;
}

table {
    width: 100%;
}
th {
    background-color: #f9f9f9;
}
th, td {
    border:1px solid;
    /*word-break: break-all;*/
    word-break: break-word;
    padding: 2px 4px;
}
td input{
    width: calc(100% - 8px);
}

.text_width80 {
    width: 80px;
}
.text_width120 {
    width: 120px;
}
.text_width140 {
    width: 140px;
}
.text_width200 {
    width: 200px;
}

.center{
    text-align:center;
}
.right {
    text-align:right;
}

.msg-info {
    color: red;
    font-size: 14px;
    font-weight: bold;
}

.w-100 {
    width: 100%;
}

.mx-400 {
    max-width: 400px;
    margin: auto;
}

.d-flex {
    display: flex;
}
/********* loading view ******************/
/* 画面全体の設定 */
#loader_wrap {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgb(56 48 48 / 80%);
    display: none;
}

/*************  *************/
.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}
.loader {
    color: #000;
    font-size: 10px;
    margin: 80px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}
.loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.loader:after {
    left: 3.5em;
}
@-webkit-keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
    }
    @keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}