.staking-box__main {
    flex-wrap: wrap !important;
    gap: 2.8rem !important;  /* アイテム間のスペース */
    width: 100% !important;  /* 親要素の幅を100%に */
}

.staking-box__main--items {
    flex-grow: 0 !important;  /* 幅が伸びないように */
    flex-shrink: 0 !important;  /* 幅が縮まないように */
    flex-basis: calc(33.33% - 2rem) !important;  /* 必ず計算式を適用 */
    background: #FFFFFF !important;
    border-radius: 1.2rem !important;
    padding: 2rem 2rem 4rem !important;
}

.staking-box__main:only-child .staking-box__main--items {
    flex-basis: 100% !important;  /* 1つしかない場合は幅100% */
}

.staking-box__main--items .price__items:first-child {
    -webkit-box-flex: 0; /* 不要な伸縮を防ぐ */
    -webkit-flex: 0 0 auto; /* 必要な幅を保つ */
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; /* 幅をコンテンツに合わせる */
}
