/*---------------------------------
  チャート
---------------------------------*/
.bar-chart-002 {
    font-size: .9em;
}
.bar-chart-002 > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 7px;
}
.bar-chart-002 dt {
    margin-top: 10px;
    margin-bottom: 6px;
    font-weight: bold;
}
.bar-chart-002 dd {
    width: 100%;
    margin: 0;
    border-radius: 3px;
    background-color: #ddd;
}
.bar-chart-002 span {
    display: inline-block;
    padding-right: 15px;
    border-radius: inherit;
    background-color: #333366;
    color: #fff;
    font-weight: 600;
    line-height: 45px;
    text-align: right;
    white-space: nowrap;
		width:0;
    
}

.bar-chart-002.active span {
		animation: anima-bar-chart-002 1.2s ease;
}

.bar-chart-002.stand span {
    animation: none;
    opacity: 0;
}
.bar-chart-002 dd.orange span {
    color: #fff;
}
.bar-chart-002 dd.orange {
    background-color: #FFB74D;
}
.bar-chart-002 .orange span {
    background: #F89400;
}
.bar-chart-002 dd.blue {
    background-color: #F2F2F2;
}
.bar-chart-002 .blue span {
    background: #B7D9E4;
}
.bar-chart-002 dd.blue span {
    color: #333;
}
@keyframes anima-bar-chart-002 {
    from {
        width: 0;
    }
}