html, body {
    background-color: #F2F2F2;
    font-size: 20px;
}

body {
    padding-top: 1.0rem;
    padding-bottom: 0.0rem;
    padding-left: 1.0rem;
    padding-right: 1.0rem;
}

a {
    text-decoration: none;
}

h2.title {
    color: #00B0F0;
    font-size: 1.5rem;
}

button {
    display: inline-block;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    color: white;
    background-color: #00B0F0;
    border: 1px solid rgba(0, 0, 0, 0);
    padding: 0.0rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    line-height: 2;
    border-radius: 0.25rem;
}
button:hover {
     background-color: #008EC0;
}
button[disabled] {
    pointer-events: none;
    background-color: #999999;
}
button.btn-delete {
    color: white;
    background-color: #ff0000;
    border: 1px solid rgba(0, 0, 0, 0);
}
button.btn-delete:hover {
    background-color: #dd0000;
}

input[type='checkbox'] {
    -ms-transform: scale(1.5, 1.5);
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
}

/* パンくずリスト */
div.breadcrumblist {
    padding-bottom: 1rem;
}

/* ローディング */
#loading {
    background: rgba(0, 0, 0, .5);
    z-index: 10000;
}