@charset "UTF-8";

.order_details ul.order_item {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}
.order_details ul.order_item li {
    width: 48%;
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.order_details ul.order_item li:nth-child(n+5) {
    width: 32%;
}

.order_details ul.order_item li .order_item_title {
    display: block;
    font-weight: bold;
    line-height: 1.2;
}

.k-form {
    margin-bottom: 30px;
}
.k-form select {
    width: 100%;
    line-height: 30px;
    height: 30px;
}

.k-form input[type="number"],
.k-form select {
    padding: 1px 5px;
    border: 1px solid #d4d4d7;
    border-radius: 3px;
    min-height: 30px;
    width: 100%;
    box-sizing: border-box;
}

/* agreement */
.k-form .agreement_text {
    background: #fff;
    margin: 0 auto 30px auto;
    width: 100%;
    border: 1px solid #d4d4d7;
    height: 200px;
    overflow-y: scroll;
    padding: 16px;
    box-sizing: border-box;
}
.k-form .agreement_text,
.k-form .agreement_text p {
    font-size: 14px;
}

.k-form .submit_btn {
    text-align: center;
}
.agreement_btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px auto 30px;
}

.mt40 { margin-top: 20px!important; }
.mb20 { margin-bottom: 20px!important; }
.mb30 { margin-bottom: 30px!important; }
.mb40 { margin-bottom: 40px!important; }
.mb50 { margin-bottom: 50px!important; }

.ui-widget.ui-widget-content {
    z-index: 1000!important;
}
@media only screen and (min-width:911px){
    #content {
        width: 880px;
        float: none;
    }
    
    .order_details ul.order_item {
        justify-content: space-between;
        width: 880px;
    }
    .order_details ul.order_item li {
        width: 24%;
    }
    .order_details ul.order_item li:nth-child(n+5) {
        width: 16%;
    }

    .k-form .agreement {
        width: 80%;
        max-width: 900px;
        margin: 0 auto;
    }
}

