@charset "utf-8";
/* BrowserReset */
 button{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 100%;
    font-size: 16px;
    position: relative;
    top: -1px;
    margin: 0;
    margin: 0 4px 2px 0;
    padding: 0;
    vertical-align: middle;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;
    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    *margin-right: 3px;
    cursor: pointer;
}


.cardA p , .cardB p {
	font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    word-wrap: break-word;
    border: 0;
    outline: 0;
}




/* cartWrap */

.cartWrap{
   display:         flex;
   display: -ms-flexbox;
   display: -webkit-flex;
}

.cartWrap .left{
    width: 70%;
    padding-right: 24px;
}
.cartWrap .right{
    width: 30%;
}

.cartWrap .total{
	font-size: 14px;
	text-align: right;
	font-weight: bold;
	font-size: 16px;
	margin-top: 16px;
}

@media screen and (max-width: 767px){
    .cartWrap{

       flex-direction : column;

       -webkit-flex-direction : column;
       -ms-flex-direction : column;
   }
   .cartWrap .left{
    width: 100%;
    padding-right: 0;
}
.cartWrap .right{
    width: 100%;
    margin-top: 24px;
}
}



/* cartList */
.cartList > li{
	border-bottom: 1px solid #ccc;
	padding: 8px 0;
}

@media screen and (max-width: 767px){
    .cartList > li{
    padding: 24px 0;
}
    .cartList > li:first-child{
    padding-top: 0;
}
}

/* cardA */
.cardA{

	font-weight: bold;
	    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

}
.cardA .pic{
	width: 20%;
	display: block;
}
.cardA .pic img{
	width: 100%;
}

.cardA .cont{
	width: 80%;
	padding: 0 16px;
    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;

}
.cardA .productList{
    width: 70%;
    padding-right: 16px;
}
.cardA .price{
	width: 30%;
    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;

    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    padding-right: 16px;
}
.cardA .btnWrap{
	width: 20%;
	text-align: center;
}
@media screen and (max-width: 767px){
.cardA{
        -webkit-flex-wrap : wrap;
        -ms-flex-wrap : wrap;
            flex-wrap : wrap;

    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;

}
.cardA .cont{
                   flex-direction : column;

        -webkit-flex-direction : column;
            -ms-flex-direction : column;
}
.cardA .price{
        -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.cardA .productList{
    width: 100%;
}
.cardA .btnWrap{
    width: 100%;
    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
margin-top: 16px;

}
}








/* cardB */
.cardB{
    background: #f7f7f7;
    padding: 24px;
    text-align: center;
    width: 100%;
}
.cardB .ttl{
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 16px;
}

/* btn-common */
.btn-common{
    border-radius: 5px;
    padding: 12px;
    width: 100%;
    color: #fff;
    background: #00aaf9;
    display: block;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border:2px solid #00aaf9;
}
a.btn-common{
    color: #fff;
}
.btn-common:hover{
    color: #00aaf9;
    background: #fff;
    border:2px solid #00aaf9;
}


.bg-green{
    background: #008f6c;
    border:2px solid #008f6c;
}
.btn-common.bg-green:hover{
    background: #fff;
    border:2px solid #008f6c;
    color: #008f6c;
}
.bg-orange{
    background: #ff2d0a;
    border:2px solid #ff2d0a;
}
.btn-common.bg-orange:hover{
    background: #fff;
    border:2px solid #ff2d0a;
    color: #ff2d0a;
}


/* linkTxt */
a.linkTxt{
    color: #1d54a7;
    font-weight: bold;
    display: inline-block;
    position: relative;
}
/* linkArrow */
.linkArrow{
    position: absolute;
    top: 0;
    left: 0;
}
.linkArrow:before{
    content:">>";
}
/* linkTxt txt */
.linkTxt .txt{
    position: relative;
    margin-left: 24px;
}
.linkTxt .txt:after{
    content:"";
    width: 100%;
    height: 1px;
    background: #666;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

}
.linkTxt:hover .txt:after{
    opacity: 1;
}


/* productList */
.productList > li{
	display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	margin-bottom: 4px;
}
.productList .ttl{
	width: 100%;
	font-size: 16px;
}

.productList .label{
	font-size: 12px;
	padding: 2px 8px;
	text-align: center;
	width: 100%;
	max-width: 80px;
	border:1px solid #666;
	margin-right: 8px;
}



/* btn-delete */
.btn-delete{
	width: 100%;
	background: #666;
	color: #fff;
	padding: 2px;
	font-size: 12px;
	border-radius: 5px;
	display: block;
    border:2px solid #666;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
font-weight: bold;
}
.btn-delete:hover{
    background: #fff;
    color: #666;
}


/* btn-favorite */

.btn-favorite{
    width: 100%;
    background: #fff;
    color: #ff003c;
    padding: 4px 2px;
    font-size: 12px;
    border-radius: 5px;
    display: block;
    border:2px solid #ff003c;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    font-weight: bold;
    line-height: 1.2;
}
.btn-favorite:hover{
    background: #ff003c;
    color: #fff;
}

/* secBottom */

.secBottom_S{
    padding-bottom: 16px;
}

/* layout */
.tac{
    text-align: center;
}