.container-fluid {
    margin-right: auto;
    margin-left: auto;
    max-width: 90%;
}

.loading {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1.0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20000;
}

.loading img {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
}

.square-img {
    width: 600px;
    height: auto;
    object-fit: cover;
}

.example-font {
    color: #8CC63F;
    margin: 10px;
}


.sales-font-color {
    color: #39B54A;
    font-size: 16px;
}

.sales-font-color-pickup {
    color: #ED1E79;
    font-size: 16px;
}

.sales-font-sum {}

.sales-border-bottom {
    border-bottom: solid 2px;
}

.send {
    padding: 5px 10px;
}

.recieve {
    padding: 5px 10px;
}

.SubHeadline {
    color: #888;
    padding: 25px 10px 3px 0px;
    border-bottom: 1px solid #ddd;
}

.motivateBOX {
    width: 100%;
    clear: both;
}

.motivateBOX-L {
    float: left;
    width: 69%;
}

@media screen and (max-width: 639px) {
    .motivateBOX-L {
        float: none;
        width: 96%;
        margin: 0 auto;
    }
}

.motivateBOX-R {
    float: right;
    width: 29%;
    border: 2px solid #88A80D;
}

@media screen and (max-width: 639px) {
    .motivateBOX-R {
        float: none;
        width: 96%;
        margin: 0 auto;
    }
}

.HighestCaption {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.HighestPrice {
    color: #88A80D;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    padding: 0px 0px 5px 0px;
    line-height: 85%;
    margin: 0;
}

.FontSizeReduction14 {
    font-size: 14px;
}

.FontSizeReduction20 {
    font-size: 20px;
}

.AboutUnitPrice {
    color: #999;
    font-size: 14px;
    text-align: left;
    padding: 10px 5px;
}

.SpOnly {
    display: none;
}

@media screen and (max-width: 640px) {
    .SpOnly {
        display: block;
    }
}


ul.GoodArticle {
    list-style-type: none;
    margin: 0px 0%;
    padding: 0;
}

@media screen and (max-width: 640px) {
    ul.GoodArticle {
        margin: 0px 2%;
    }
}

ul.GoodArticle li {
    font-size: 14px;
    line-height: 160%;
    border-bottom: dotted 1px #ddd;
    background-color: #fff;
}

@media screen and (max-width: 640px) {
    ul.GoodArticle li {}
}

ul.GoodArticle li:nth-child(even) {
    background-color: #f5f8fa;
}

ul.GoodArticle li a {
    display: block;
    color: #999;
    padding: 10px 10px;
}

@media screen and (max-width: 640px) {
    ul.GoodArticle li a {}
}

ul.GoodArticle li a:hover {
    color: #666;
    background-color: #f8f8f8;
}


.col-md-2 {
    width: 12%;
    /* padding:0; */
    margin: 0px 2px 0px 2px;
}


.readonly-disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.readonly-disabled:focus {
    outline: none;
    box-shadow: none;
}

/* 数字のガタガタ整える */
.form-control[type="number"],
.form-control.js-comma-number {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco,
        Consolas, "Liberation Mono", "Courier New", monospace;
    font-variant-numeric: tabular-nums;
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}


.btn-group {
    display: flex;
    flex-wrap: wrap;
    /* 折り返し許可（横幅足りない時） */
}

.btn-group .btn {
    min-width: 200px;
    /* ← 全ボタン同じ横幅 */
    height: 44px;
    /* ← 全ボタン同じ高さ */
    display: flex;
    align-items: center;
    /* 縦中央 */
    justify-content: center;
    /* 横中央 */
    white-space: nowrap;
    /* 改行させない */
}