.message {
    background: #E3F7FF;   
    border-radius: 8px;
}
.message__inner {
    display: flex;
    padding: 2rem 3rem;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
@media only screen and (max-width: 767.98px) {
    .message__inner {
        flex-direction: column;        
    } 
}
.message__head {
    font-size: 2rem;
    font-weight: bold;
}
.message__text {
    font-weight: bold;
}
.chart-container {
    background: #f4f4f4;
    margin: auto;
    padding: 2rem;
}
@media only screen and (min-width: 768px) {
    .chart-container {
        width: max-content;
    }
}
.chart-container > p.text {
    margin: auto;
    max-width: fit-content;
}
.chart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}
.chart__text-wrap {
    text-align: center;
}
.chart__text-wrap > .chart__text:first-child {
    margin-bottom: 2.5rem;
}
.chart__img {
    width: 18%;
}
.chart__text {
    line-height: 1.6em;
}
.chart__text .color-red,
.chart__text .color-yellow,
.chart__text .color-blue,
.chart__text .color-green {
    font-weight: bold;
    font-size: 1.8rem;
}
.chart__text .color-red {
    color: #C51E0D;
}
.chart__text .color-yellow {
    color: #AB5B0B;
}
.chart__text .color-blue {
    color: #084F94;
}
.chart__text .color-green {
    color: #0C7B0C;
}
.chart__text .rate {
    font-size: 2.6rem;
}
@media only screen and (max-width: 767.98px) {
    .chart {
        gap: 0.5rem;
    }
    .chart-container {
        padding: 1rem; 
    }
    .chart__text .color-red,
    .chart__text .color-yellow,
    .chart__text .color-blue,
    .chart__text .color-green {
        font-weight: bold;
        font-size: 1.6rem;
    }
    .chart__text .rate {
        font-size: 2rem;
    }
    .chart__img {
        width: 17rem;
    }
}
.table.campaign [class*="__cell"][class*="--lv1"]:not([class*="__cell__sub"]) {
    background-color: #0b3190;
    color: #FFF;
}
@media only screen and (max-width: 767.98px) {
    .table[data-table-sp="vertical"] .table[data-table-sp="shrink"] .table__matrix {
        display: table !important;
    }
    .table[data-table-sp="vertical"] .table[data-table-sp="shrink"] thead {
        display: table-header-group !important;
    }
    .table[data-table-sp="vertical"] .table[data-table-sp="shrink"] tbody {
        display: table-row-group !important;
    }
    .table[data-table-sp="vertical"] .table[data-table-sp="shrink"] tr {
        display: table-row !important;
    }
    .table[data-table-sp="vertical"] .table[data-table-sp="shrink"] th,
    .table[data-table-sp="vertical"] .table[data-table-sp="shrink"] td {
        display: table-cell !important;
    }
}
.detail-box {
    text-align: center;
}
.detail-box .detail-box__head {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: #0B3190;
    color: #FFF;
    font-weight: bold;
    padding: 1rem;
}
.detail-box .detail-box__body {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background: #EBEEF5;
    padding: 2rem;
}
.detail-box .detail-box__inner {
    background: #FFF;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem 3rem 2rem;
}
.detail-box .detail-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.detail-box .plus {
    width: 5rem;
    height: 5rem;
    position: relative;
}
.detail-box .plus::before {
    position: absolute;
    content: '';
    border-top: 4px solid #0B3190;
    width: 5rem;
    top: calc(50% - 2px);
    right: 0;
}
.detail-box .plus::after {
    position: absolute;
    content: '';
    border-right: 4px solid #0B3190;
    height: 5rem;
    right: calc(50% - 2px);
}
.detail-box .equal {
    width: 5rem;
    height: 2rem;
    border-top: 4px solid #0B3190;
    border-bottom: 4px solid #0B3190;
}
.detail-box .detail-item__label {
    padding: 0.5rem 9rem;
    border-radius: 12px;
    background: #FEF7ED;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
@media only screen and (max-width: 767.98px) {
    .detail-box .detail-box__inner {
        flex-direction: column;
    }
    .detail-box .detail-item {
        width: 100%;
    }
    .detail-box .detail-item__label {
        width: 100%;
        padding: 0.5rem;
    }
    .detail-box .equal {
        margin: 1.5rem;
        transform: rotate(90deg);
    }
}
@media print, screen and (min-width: 768px) {
    .note-list > li {
        padding-left: 1.8em;
    }
}
@media only screen and (max-width: 767.98px) {
    .note-list > li {
        padding-left: 2em;
    }
}