/** Modalダイアログ大きくする */
.modal#syouhinkounyu .modal-dialog-ookii {
    max-width: inherit;
    width: 70%;
}

/** Modal商品購入 */
.modal#syouhinkounyu .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #000;
    background-clip: padding-box;
    border: 3px solid rgb(196,0,20);
    border-radius: 0.5rem;
    outline: 0;
    color: #f8f9fa;
    height: 800px;
}

/** Modal商品購入 ヘッダー */
.modal#syouhinkounyu .modal-content .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    background-color: rgb(196,0,20);
    border: 1px solid rgb(196,0,20);
    border-bottom: 1px solid rgb(196,0,20);
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
    color: #f8f9fa;
}

/** Modal商品購入 Body1段目のNav */
.modal#syouhinkounyu .modal-content .modal-body#modal-body-nav {
    position: relative;
    flex: 1 1 auto;
    padding-top: 1rem;
    padding-right: 0rem;
    padding-bottom: 0rem;
    padding-left: 0rem;
}

/** Modal商品購入 Body2段目 */
.modal#syouhinkounyu .modal-content .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding-top: 1rem;
    padding-right: 0rem;
    padding-bottom: 0rem;
    padding-left: 0rem;
}

/** Modal商品購入の詳細 */
.modal_syouhinkounyu_syousai {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

/** Modal商品購入の詳細 content */
.modal_syouhinkounyu_syousai .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
    color: #000;
    height: auto;
}
/** Modal商品購入の詳細 ヘッダー */
.modal_syouhinkounyu_syousai .modal-content .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    background-color: rgb(196,0,20);
    border: 1px solid rgb(196,0,20);
    border-bottom: 1px solid rgb(196,0,20);
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
    color: #f8f9fa;
}
/** Modal商品購入の詳細 Body */
.modal_syouhinkounyu_syousai .modal-content .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding-top: 1rem;
    padding-right: 0rem;
    padding-bottom: 0rem;
    padding-left: 0rem;
    border-top-color:  rgb(196, 0, 20);
    border-top-style: solid;
    border-top-width: 2px;
    border-right-color: rgb(196, 0, 20);
    border-right-style: solid;
    border-right-width: 2px;
    border-bottom-color:  rgb(196, 0, 20);
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-left-color: rgb(196, 0, 20);
    border-left-style: solid;
    border-left-width: 2px;
}

/** Modal商品購入の詳細 閉じるボタンを〇にする */
.btn-close-maru {
    border-radius: 1rem;
    opacity: 1;
    border: 2px solid;
}