  .chart-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px; /* グラフ間の隙間 */
    width: 100%;
    max-width: 600px;
    margin : 1em auto;
  }

  .item-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .label {
    width: 20%; /* 項目名の幅 */
    font-size: 14px;
  }

  .bar-bg {
    flex-grow: 1;
    background-color: #eee;
    height: 25px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0 !important;
  }

  .bar-fill {
    height: 100%;
    background-color: #36a2eb;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    transition: width 0.5s ease;
  }