@charset "utf-8";

/* -- body -------------------------------------------------------------------------------- */

body {
    overflow-y: scroll;
    /* あってもなくてもどちらでも可 */
}

/* -- div#confirm_field, dl, dt, dd -------------------------------------------------------------------------------- */

div#confirm_field * {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 400;
    font-style: normal;
}

div#confirm_field {
    width: calc(94% - 80px);
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: #f6f6f6;
    line-height: 1.8;
    display: none;
    z-index: 3;
    position: relative;
    border-radius: 30px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

div#confirm_field p {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 30px;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    border-bottom: 1px solid #cccccc;
}

div#confirm_field dl {
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    float: left;
    background: #f2f2f2;
}

div#confirm_field dl:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

div#confirm_field dl dt {
    width: 25%;
    background: #f6989c;
    color: #fff;
    padding: 24px 0 24px 24px;
    margin-right: 0px;
    text-align: left;
    vertical-align: middle;
    font-size: 15px;
    float: left;
}

div#confirm_field dl dd {
    width: calc(75% - 50px);
    color: #5d2a42;
    background: #fff;
    padding: 24px 0 24px 24px;
    margin-right: 0px;
    vertical-align: middle;
    font-size: 15px;
    float: right;
}

/* -- button -------------------------------------------------------------------------------- */

div#confirm_field p#confirm_submit {
    width: 600px;
    margin: 0 auto;
    padding: 40px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border: none;
}

div#confirm_field input[type="button"] {
    width: 240px;
    margin: 0 auto;
    font-size: 14px;
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
    vertical-align: middle;
}

div#confirm_field input#confirm_submit_button {
    width: 240px;
    padding: 12px 0;
    text-decoration: none;
    color: #fff;
    background: #07a6c7;
    border: none;
    transition: 0.4s;
    border-radius: 50px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

div#confirm_field input#confirm_submit_button:hover {
    color: #fff;
    cursor: pointer;
    background: #0786c7;
}

div#confirm_field input#confirm_cancel_button {
    width: 240px;
    padding: 12px 0px;
    text-decoration: none;
    color: #fff;
    background: #07a6c7;
    border: none;
    transition: 0.4s;
    border-radius: 50px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

div#confirm_field input#confirm_cancel_button:hover {
    color: #fff;
    cursor: pointer;
    background: #0786c7;
}

/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */

/* 768pixel start */
/* -- div#confirm_field, dl, dt, dd -------------------------------------------------------------------------------- */

@media screen and (max-width: 768px) {
    div#confirm_field {
        width: calc(94% - 80px);
        margin: 40px auto 0;
    }

    div#confirm_field p {
        text-align: left;
    }

    div#confirm_field p {
        border-bottom: none;
    }

    div#confirm_field dl {
        width: 100%;
        margin: 0 auto;
        border: none;
        background: none;
    }

    div#confirm_field dl dt {
        width: auto;
        float: none;
        padding: 4px 5%;
        margin-right: 0px;
        vertical-align: middle;
        font-size: 15px;
        border-top: 1px solid #cccccc;
        border-left: 1px solid #cccccc;
        border-right: 1px solid #cccccc;
    }

    div#confirm_field dl dd {
        width: auto;
        float: none;
        color: #5d2a42;
        background: #fff;
        padding: 16px 5%;
        vertical-align: middle;
        font-size: 15px;
        border: 1px solid #cccccc;
        margin-bottom: 10px;
    }

    /* -- button -------------------------------------------------------------------------------- */

    div#confirm_field p#confirm_submit {
        width: 94%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    div#confirm_field input#confirm_submit_button {
    }

    div#confirm_field input#confirm_cancel_button {
        margin-top: 20px;
        -webkit-appearance: none;
    }
}

/* 768pixel end */
