/* ---------------------------------------
ページ全体
--------------------------------------- */
:root {
    --base-height: 40px;
    --base-margin-right: 20px;
    --base-margin-bottom: 20px;
    --base-border: 1px solid #000000;
}


/* ---------------------------------------
ページ説明部分
--------------------------------------- */
.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: var(--base-width);
}

.heading {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: var(--base-height);
    background-color: #F3F3F3;
    margin-top: 30px;
    margin-bottom: var(--base-margin-bottom);
}

.announce {
    height: 95px;
    text-align: left;
}


.guide-link {
    text-align: center;
    line-height: var(--base-height);
    border-bottom: 1px solid #000000;
    margin-bottom: var(--base-margin-bottom);
    padding-bottom: var(--base-margin-bottom);
    box-sizing: border-box;
}


/* ---------------------------------------
入力フォーム部分
--------------------------------------- */
.input-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.input-container *, 
.input-container *::before, 
.input-container *::after {
    box-sizing: border-box;
}

.field-name {
    background-color: #DBDBDB;
}

.order-unit {
    display: flex;
    align-items: flex-start;
    line-height: var(--base-height);
    margin-bottom: var(--base-margin-bottom);
}

.col--unit-number {
    width: 40px;
    background-color: transparent; 
    margin-right: var(--base-margin-right);
}

.col--order-number {
    display: flex;
    justify-content: center;
    width: 285px;
    margin-right: var(--base-margin-right);
}

.page-wrapper .order-number-form {
    height: var(--base-height);
    width: 210px;
    font-size: var(--base-font-size);    /* 打消し */
    border: var(--base-border);
    box-sizing: border-box;
    margin:0 10px 0 0;
    padding:0;
}

.check-button {
    width: 65px;
    background-color: #303030;
    color: #FFFFFF;
}

.col--quantity {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-right: var(--base-margin-right);
}

.page-wrapper .quantity {
    width: 90px;
    height: var(--base-height);
    text-align: center;
    font-size: var(--base-font-size);    /* 打消し */
    border: var(--base-border);
    padding: 0;
}

.page-wrapper .up-button,
.page-wrapper .down-button {
    height: var(--base-height);
    width: 45px;
    border: var(--base-border);
}

.page-wrapper .up-button {
    margin-right: 10px;
}

.col--item-detail {
    display:flex;
    justify-content: center;
    width: 450px;
    flex-shrink: 0;
    margin-right: var(--base-margin-right);
}

/* makeshopのjsによりIDが上書きされるためそのまま使用 */
.page-wrapper [id^="M_item_info_"] {
    min-height: var(--base-height);
    width: 450px;
    text-align: left;
    margin-right: var(--base-margin-right);
    border: var(--base-border);
    box-sizing: border-box;
}

/* 打消し */
.page-wrapper [id^="M_item_info_"] p {
    font-size: var(--base-font-size);
}

.col--clear-button {
    display: flex;
    width: 65px;
    height: var(--base-height);
    background-color: transparent;
}

.page-wrapper .clear-button {
    width: 100%;
    height: 100%;
    color: #000000;
    background-color: #E5E5E5;
    border: 1px solid #ACACAC;
}

/* 打消し */
.col--unit-number,
.col--order-number,
.col--quantity,
.col--item-detail,
.col--clear-button {
    padding: 0;
}


/* ---------------------------------------
カートボタン
--------------------------------------- */
.page-wrapper .cart-button {
    width: 328px;
    height: 60px;
    background-color: #C30D23;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #FFFFFF;
}

.img-icon {
    width: 8%;
    height: auto;
    position:absolute;
    left: 6%;
}

.arrow-icon {
    position: absolute;
    right: 30px;
    font-size: 14px;
}

.page-wrapper .check-button:hover,
.page-wrapper .clear-button:hover,
.page-wrapper .cart-button:hover {
    opacity: 0.7;
    transition: opacity 0.2s;
}