/* 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;
}

/* ボタンの色がbodyの背景色と同じ */
.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) {
}
