@charset "utf-8";
/* ------------------------------------------------------------------------------
 請求カタログの確認 cart
------------------------------------------------------------------------------ */
.cartList {
margin-bottom: 45px;
padding: 25px 15px;
border: solid 3px #dddddd;
}
.cartList li {
margin-bottom: 30px;
border-bottom: solid 1px #cccccc;
}
.cartList li:last-of-type {
border-bottom: none;
margin-bottom: 0;
}
.cartLisThumb {
max-width: 125px;
margin: 0 auto;
margin-bottom: 10px;
border: solid 1px #cccccc;
}
.cartLisThumb img {
width: 100%;
height: auto;
}
.cartLisText {
margin-bottom: 1.5em;
}
.cartLisText small {
line-height: 2.5em;
font-size: 12px;
font-size: 1.2rem;
}
.cartLisText p {
font-size: 16px;
font-size: 1.6rem;
font-weight: bold;
}
.cartLisBtn {
text-align: center;
margin-bottom: 20px;
}
.cartLisBtn a {
display: block;
width: 100%;
padding: .5em 0;
border-radius: 5px;
font-size: 16px;
font-size: 1.6rem;
color: #ffffff;
text-decoration: none;
background-color: #999999;
}
.cartLisBtn a::before {
content: "×";
margin-right: .2em;
font-weight: bold;
font-size: 20px;
font-size: 2.0rem;
}

/* --------------------
PC用
-------------------- */
@media all and (min-width: 751px) {
.cartList {
margin-bottom: 60px;
padding: 40px;
}
.cartList li {
display: flex;
flex-direction: row;
align-items: center;
padding-bottom: 40px;
}
.cartList li:last-of-type {
padding-bottom: 0;
}
.cartLisThumb {
max-width: 150px;
margin: 0;
}
.cartLisText {
width: 70%;
margin: 0 5%;
vertical-align: middle;
}
.cartLisBtn {
min-width: 180px;
}
.cartLisBtn a {
transition: .5s;
}
.cartLisBtn a:hover {
opacity: .7;
transition: .5s;
}

}