@charset "utf-8";

.spcart button {
    background: #c40201;
    display: block;
    padding: 20px;
    border-radius: 6px;
    font-size: 2.4rem;
    font-weight: bold;
    color: #fff !important;
    box-shadow: 0 5px 0 0 #800100;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
    text-decoration: none;
    margin: 0 auto;
}

.spcart_col2 {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 33%);
}

.spcart_col2 li {
    grid-template-columns: 36% auto;
    position: relative;
    gap: 40px 20px;
    padding: 3%;
    border-radius: 5px;
    background: #e0dfdf;
    margin: 2%;
}

.spcart_col2 img {
    width: 100%;
}

.itemtitle {
    padding: 20px 0 20px 0;
    font-weight: bold;
}

.spcart_select {
    margin-bottom: 10%;
}

.spcart_select p {
    margin-bottom: 0px;
    font-weight: bold;
}

.spcart_select {
    overflow: hidden;
    width: 90%;
    text-align: center;
}

.selectName {
    font-size: 1.5rem;
    margin-bottom: 0px;
    font-weight: bold;
}

.spcart_select select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.spcart_select select::-ms-expand {
    display: none;
}

.spcart_select.cp_sl01 {
    margin-bottom: 10px;
    position: relative;
    border: 1px solid #bbbbbb;
    border-radius: 2px;
    background: #ffffff;
    width: 100%;
    height: 30px;
}

.spcart_select.cp_sl01::before {
    position: absolute;
    top: 0.8em;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
}

.spcart_select.cp_sl01 select {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1;
    padding: 8px 38px 8px 8px;
    color: #666666;
}

.spcart_qty span {
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 10px;
    vertical-align: middle;
    line-height: 2;
}

.large--ibox__btn {
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 676px) {
    .spcart_col2 {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(2, 50%);
    }

    .spcart_col2 li {
        width: 95%;
        margin: 0 auto 30px auto;
    }

    .spcart_qty span {
        font-size: 1.5rem;
        line-height: 2;
    }

    .large--ibox__btn {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}