/* 文字列の改行を二行に限定する */
.item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    width: 100%;
    -webkit-line-clamp: 2;
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
    margin-right: 0.625rem;
}

.badge-danger {
    color: #fff;
    background-color: #ee0a24;
}

/* liのインデントをそろえる */
ul {
    padding-left: 20px;
    list-style-type: disc;
    list-style-position: outside;
}

/* aタグリンクの下線非表示 */
a {
    text-decoration: none;
    color: black;
}

/* paypay用ボタンカラーリング */
.btn-paypay {
    color: #fff;
    background-color: #fa7385;
    border-color: #fa7385;
}

textarea {
    /* 右下の//(サイズ変更機能)を消す */
    resize: none;
    width: 100%;
    border-color: #8f8f8f9a
}
