<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ボタンサイズ変更 */
.checkout-button {
    display: inline-block;
    width: 600px;
    max-width: 100%;
    line-height:50px;
    padding: 0px;
    background-color:#89c3eb;
    border: 2px solid transparent;
    border-top-color: #84a2d4;
    border-bottom-color: #84a2d4;
    border-radius: 10px;
    color: #fff; /*rgba(25, 68, 142, 1)*/
    font-size: 1.0rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: .25s;
    cursor: pointer;
    margin: 10px 20px 10px 20px;
}

.checkout-button:focus,
.checkout-button:hover{
    background-color: rgba(229, 218, 205, .55);
    border-color: #19448e;
    color: #19448e;
}

.checkout-button.download{
    background-color: rgba(229, 218, 205, .55);
    border-color: #19448e;
    color: #19448e;
    cursor: text;
    line-height: 2rem;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 50px;
    display: inline-block;
    text-align: left;
}

.checkout-button.serial{
    width: 700px;
    background-color: rgba(229, 218, 205, .55);
    border-color: #dc143c;
    color: #19448e;
    cursor: text;
}

/*中央寄せ*/
.bl_stripe{
    margin: 30px 10px 30px 10px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #f1f8ff;
    box-shadow: 0px 0px 0px 10px #f1f8ff;/*線の外側*/
    border: dashed 2px #668ad8;/*破線*/
    border-radius: 9px;
}

.out_box{
    text-align: center;
}

.in_box{
    display: inline-block;
    text-align: left;
}

/* シリアル番号不足のエラーメッセージ */
.bl_msg {
    display: inline-block;
    background: rgba(255,192,203,0.5);
    box-shadow: 0px 0px 0px 10px #ffc0cb;/*線の外側*/
    border: dashed 2px #dc143c;/*破線*/
    border-radius: 9px;
    margin-top: 30px;
    padding: 0.5em 0.5em 0.5em 2em;
}
</pre></body></html>