@charset "utf-8";

/*** detail.css ***/
.item_detail_sect {
    background-image: url(../img/detail/item_bg.png);
    background-position: -110px 25px;
    background-repeat: no-repeat;
    background-size: 191px;
}

.item_detail_box {
    padding: 0 20px;
    max-width: 1040px;
    margin: 0 auto;
}
.item_detail_img_box {
    padding: 0 30px;
    margin-bottom: 35px;
}
.item_detail_txt {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.item_detail_link {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.item_detail_link img {
    width: 79px;
}
.item_detail_link_txt {
    padding-left: 5px;
    font-size: 11px;
    color: #666;
}
.item_detail_price_box {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.item_detail_label {
    padding: 5px 10px;
    background-color: #666;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
}
.item_detail_price_box .ec-price .ec-price__price {
    font-size: 32px;
    padding: 0;
    padding-left: 8px;
    font-weight: 500;
    color: #000;
}
.item_detail_price_box .ec-price .ec-price__price small {
    font-size: 75%;
}
.item_detail_price_box .ec-price .ec-price__tax {
    font-size: 50%;
}
.item_detail_price_form .ec-blockBtn--action {
    background-color: #DC0000;
    border-radius: 10px;
    max-width: 230px;
    margin: 0 auto;
    font-size: 23px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item_detail_price_form .ec-blockBtn--action .icon {
    width: 52px;
    height: 25px;
    margin-right: 3px;
    background-repeat: no-repeat;
    background-size: contain;
}
.item_detail_price_form .ec-blockBtn--action .icon.cart_icon {
    background-image: url(../img/common/cart_icon_white.svg);
}
.item_detail_price_form .ec-blockBtn--action .icon.form_icon {
    background-image: url(../img/common/form_icon_white.svg);
}
.item_table_sect {
    padding: 0 20px;
    max-width: 1040px;
    margin: 0 auto 30px;
}
.item_detail_table_wrap {
    overflow: hidden;
    overflow-x: auto;
    margin-bottom: 40px;
}
.item_detail_table {
    width: 100%;
    margin-right: 10px;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 18px;
}
.item_detail_table thead {
    background-color: #F2F2F2;
}
.item_detail_table tr {
    border-bottom: 0.5px solid #333;
}
.item_detail_table th,
.item_detail_table td {
    padding: 20px 0;
    width: 220px;
    border-right: 0.5px solid #333;
    text-align: center;
    font-weight: normal;
}
.item_detail_table th:last-child,
.item_detail_table td:last-child {
    border-right: none;
}

/* スライダー_SP */
.arrow_left-box {
    position: absolute;
    top: 0;
    z-index: 20;
    bottom: 35px;
    right: auto;
    left: 0;
    width: 21px;
    height: 27px;
    margin: auto;
    cursor: pointer;
}

.arrow_left-box:before {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    top: 14px;
    width: 21px;
    height: 27px;
    background-image: url(../img/common/arrow_left.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}

.arrow_right-box {
    position: absolute;
    top: 0;
    z-index: 20;
    bottom: 35px;
    right: 0;
    left: auto;
    width: 21px;
    height: 27px;
    margin: auto;
    cursor: pointer;
}

.arrow_right-box:before {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    top: 14px;
    width: 21px;
    height: 27px;
    background-image: url(../img/common/arrow_right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}
.item_detail_btn {
    margin-top: 40px;
}

@media screen and (min-width:640px) {
    .item_detail_sect {
        background-position: -202px -80px;
        background-size: 545px;
    }
    .item_detail_box {
        display: flex;
    }
    .item_detail_img_box {
        width: 100%;
        max-width: 481px;
        padding: 0;
    }
    .item_detail_info_box {
        width: calc(100% - 525px);
        margin-left: 35px;
    }
    .item_detail_txt_box {
        margin-bottom: 45px;
    }
    .item_detail_price_box {
        margin-bottom: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .item_detail_price_box .ec-price {
        white-space: nowrap;
    }
    .item_detail_price_area {
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
    }
    .item_detail_price_form {
        margin-left: 10px;
    }
    .item_detail_txt {
        margin-bottom: 40px;
    }
    .item_detail_label {
        margin-bottom: 10px;
    }
    .item_detail_price_box .ec-price .ec-price__price {
        padding-left: 0;
    }
    /* スライダー_TAB */
    .arrow_left-box {
        left: 15px;
        bottom: 0;
    }

    .arrow_right-box {
        bottom: 0;
        right: 15px;
    }
}