/**
 * スピナー
 */
.overlay{
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 6px #ddd solid;
    border-top: 6px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 1s infinite linear;
}
@keyframes sp-anime {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}

/**
 * title系
 */
.title {
    display: table;
    position: relative;
    margin-left: 40px;
    font-size: 2.3rem;
    font-weight: 600;
}
.title:before {
    display: table-cell!important;
    vertical-align: middle!important;
    content: '';
    /*#display: block;*/
    position: absolute;
    left: -35px; /* 位置調整 */
    transform: translate(0%); /* 位置調整 */
    top: 0px; /* 下線の上下位置調整 */
    width: 5px; /* 下線の幅 */
    height: 55px; /* 下線の太さ */
    background-color: #007aff; /* 下線の色 */
}
.title>span {
    display: table-cell!important;
    vertical-align: middle!important;
}

/**
 * modal系
 */
.modal-header {
    background-color: royalblue!important;
    color: white!important;
    font-size: 1.25rem!important;
}

/**
 * カード系
 */
.card-header {
    font-weight: 600!important;
    font-size: 1.1rem!important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    padding-right: 1.4rem !important;
    padding-left: 1.4rem !important;
    background-color: royalblue!important;
    color: white!important;
}
.card-header > label {
    font-size: 1.25rem !important;
}
.card-body {
    padding: 1rem 2rem!important;
}
.card-body > .row > div {
    margin-bottom: 1.2rem!important;
}
.card-footer {
    padding: 1rem 2rem!important;
}

/**
 * その他
 */
.readonly {
    background-color: white!important;
}
.flatpickr-monthDropdown-months {
    background-color: white!important;
}

.btn-close {
    color: white!important;
}

.form-check-label {
    font-size: 1.1rem!important;
}

a, a:hover{
    color: #1c1c1c;
    text-decoration: none;
}

page-link:hover{
    color: #1c1c1c;
}
.demo-change {
    color:red;
}
.check-label {
    font-size: 15px;
    line-height: 30px;
}
.readonly {
    background-color: #f2f2f2;
}

/* select2 で 入力チェックエラーの時に、赤枠にする処理 */
.is-invalid .select2-selection,
.needs-validation ~ span > .select2-dropdown{
    border-color:red !important;
}

/* form-control付きのボタンは大きくする */
.btn.form-control {
    font-size: 1.2rem!important;
    padding: 0.8rem 0rem!important;
}
.btn-sm {
    font-size: 0.9rem!important;
}

.btn-primary {
    background-color: royalblue!important;
}
.bg-primary {
    background-color: royalblue!important;
}
.table-striped > tbody > tr:nth-of-type(even) > * {
    --phoenix-table-color-type: var(--phoenix-table-striped-color);
    --phoenix-table-bg-type: #f1f1ff;
}
