<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* button_1 */
/* 蝪励ｊ縺､縺ｶ縺� */

/* 繝懊ち繝ｳ縺ｮ濶ｲ縺後Γ繧､繝ｳ繧ｫ繝ｩ繝ｼ縺ｨ蜷後§ */
.button_all_wrap {
    width: 300px;
}
.button_all_1 {
    position: relative;
    display: inline-block;
    /* min-width: 300px; */
    width: 300px;
    padding: 18px 5px;
    background-color: rgba(var(--color_primary));
    color: rgba(var(--color_main_text));
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.button_all_1::after {
    top: 24px;
    content: "";
    right: 20px;
    width: 13px;
    height: 13px;
    border-top: 4px solid rgba(var(--color_main_text));
    border-right: 4px solid rgba(var(--color_main_text));
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    transition: all 0.2s ease;
}

/* 繝懊ち繝ｳ縺ｮ濶ｲ縺恵ody縺ｮ閭梧勹濶ｲ縺ｨ蜷後§ */
.button_all_2 {
    display: block;
    width: 300px;
    background-color: rgba(var(--color_bg));
    color: rgba(var(--color_primary));
    padding: 18px 5px;
    font-weight: bold;
    /* min-width: 300px; */
    margin: 60px auto 40px;
    position: relative;
    transition: all 0.2s ease;
}

.button_all_2::after {
    top: 24px;
    content: "";
    right: 20px;
    width: 13px;
    height: 13px;
    border-top: 4px solid rgba(var(--color_primary));
    border-right: 4px solid rgba(var(--color_primary));
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    transition: all 0.2s ease;
}

.button_all_1:hover,
.button_all_2:hover {
    text-indent: 1px;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.button_all_1:hover::after,
.button_all_2:hover::after {
    right: 15px;
    transition: all 0.2s ease;
}

/* 繝輔Ο繝ｳ繝育判髱｢繝懊ち繝ｳ髱樊ｴｻ諤ｧ */
.cms-f-btn-disable {
    width: 300px;
    background-color: #c3c3c3 !important;
    color: var(--cms-white) !important;
    border: none !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* 菫ｮ豁｣縺吶ｋ繝懊ち繝ｳ */
.amend_btn {
    background-color: #dddddd;
    margin-right: 60px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    z-index: 0;
    width: 300px;
    padding: 18px 5px;
    color: rgba(var(--color_text));
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.amend_btn::after {
    border-top: 4px solid rgba(var(--color_text));
    border-right: 4px solid rgba(var(--color_text));
}

.amend_btn:hover {
    text-indent: 1px;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

@media screen and (max-width: 1023px) {
    .confirm .button_all_wrap {
        width: 40%;
        max-width: 300px;
    }

    .confirm .button_all_wrap .button_all_1,
    .confirm .button_all_wrap .button_all_2 {
        width: 100%;
    }
}

@media screen and (max-width: 599px) {
    .button_all_wrap,
    .button_all_1,
    .button_all_2 {
        width: 260px;
    }

    .cms-f-btn-disable,
    .amend_btn {
        width: 100%;
    }

    .entry_btn_wrap .button_all_wrap:first-child {
        margin-right: 30px;
    }
}

@media screen and (max-width: 359px) {
}
</pre></body></html>