﻿@charset "utf-8";
/*コンテンツ*/
#contents {
    width: 100%;
    height: calc(100% - (52px + 52px + 53px));
    margin: auto 0;
    top: 102px;
    bottom: 94px;
}

.orderDescription {
    position: absolute;
    left: 0;
    right: 0;
    top: -33px;
    font-size: 18px;
    color: #EB0000;
    text-align: center;
}

#orderArea {
    height: 100%;
    left: 34px;
    right: 48px;
    overflow-y: auto;
}
.orderData {
    position: relative;
    float: left;
    height: 0;
    width: 23.4%;
    padding-bottom: 21.8%;
    margin-bottom: 14px;
    margin-left: 14px;
    background-color: hsl(0,0%,100%);
    border-radius: 10px;
    border: solid 2px hsl(0, 0%, 78%);
}


element.style {
}

#orderArea .orderData .imageArea {
    height: calc(100% - 130px);
    top: 0;
    padding: 7px 8px 9px 8px;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

#orderArea .orderData > * {
    position: absolute;
    bottom: 0;
    width: 100%;
}

#orderArea .orderData .image {
    height: 100%;
    max-height: 100%;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 60%);
}

#orderArea .orderData .detail {
    padding: 0 8px;
    bottom: 40px;
    box-sizing: border-box;
    /*max-height: 72px;*/
    overflow: hidden;
}
/*説明文ラベル*/
.orderDetailLabel {
    -webkit-flex: 0 0 80px;
    flex: 0 0 80px;
    width: 80px;
}
/*説明文*/
.orderDetailValue {
    -webkit-flex: 1 1 calc(100% - 80px);
    flex: 1 1 calc(100% - 80px);
    width: calc(100% - 80px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*dtを横並びにさせる*/
dt {
    float: left;
}

.buttonArea {
    height: 40px;
    justify-content: center;
    display:flex;
}

/* 再注文ボタン */
.reOrderBtn {
    margin: 10px 10px 5px 10px;
    left: 0;
    right: 50%;
    top: 0;
    bottom: 0;
    height: 32px;
    width: 38%;
    max-width: 110px;
    text-align: center;
    height: 25px;
    font-size: 13px;
}
/* コピーして再編集 */
.reEditBtn {
    margin: 10px 10px 5px 10px;
    left: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    height: 32px;
    width: 38%;
    max-width: 110px;
    text-align: center;
    height: 25px;
    font-size: 13px;
}