@charset "UTF-8";
.wrapper {
    padding-top: 150px;
    background-color: #fefaf7;
}
@media screen and (max-width: 767px) {
    .wrapper {
    }
}
.mv-sub__visual {
    background: url("/_common/img/faq/mv.png") 50% 50% / cover no-repeat;
}
 /* -------------------------------- */
.cart {
	padding: 60px 5% 160px;
}
.cart__inner {
	max-width: 880px;
	margin: 0 auto;
}
.cart h1 {
    position: relative;
    text-align: center;
    z-index: 2;
}
.cart h1 .en {
    display: block;
    font-size: 52px;
    letter-spacing: .05em;
}
.cart h1 .ja {
    display: block;
    margin-top: 10px;
    color: #e47d6e;
}
.cart__description {
    margin-top: 100px;
    font-size: 18px;
    text-align: center;
}
.cart__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}
.cart__total small {
    font-size: 15px;
}
ul.cart-list {
    margin-top: 50px;
    border-top: 1px solid #d3d3d3;
}
ul.cart-list li {
    display: flex;
    align-items: flex-start;
    padding: 50px 0;
    letter-spacing: .05em;
    border-bottom: 1px solid #d3d3d3;
}
.cart-list__thumbnail {
    width: 100px;
    min-width: 100px;
    border-radius: 10px;
    overflow: hidden;
}
.cart-list__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-left: 20px;
    width: 100%;
}
.cart-list__name {
    font-size: 26px;
    font-weight: 600;
}
.cart-list__size {
    margin-top: 20px;
}
ul.cart-list li form button {
    color: #e47d6e;
    text-decoration: underline;
}
.cart__btn a {
    position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 392px;
	height: 70px;
    margin: 50px auto 0;
	background-color: #e47d6e;
	color: #fff;
	letter-spacing: .05em;
	text-align: center;
    border: 1px solid #e47d6e;
	border-radius: 35px;
    transition: .3s;
}
.cart__btn a:hover {
	background-color: #fff;
	color: #e47d6e;
	transition: .3s;
}
.cart__btn a::after {
	position: absolute;
	content: '\f061';
	top: 50%;
	right: 25px;
	transform: translate(0,-50%);
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
    transition: .3s;
}
.cart__btn a:hover::after {
	right: 19px;
	transition: .3s;
}
.back__btn a {
    position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 180px;
	height: 45px;
    margin: 20px auto 0;
	background-color: #eee;
	color: #e47d6e;
    font-size: 14px;
	letter-spacing: .05em;
	text-align: center;
	border-radius: 35px;
}
.back__btn a:hover {
    background-color: #ddd;
}
.alert {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
    max-width: 300px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.35);
    color: #fff;
    border-radius: 10px;
    /* box-shadow: 2px 6px 10px 0 rgba(0,0,0,0.1); */
    /* backdrop-filter: blur(10px); */
    z-index: 99;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.alert.show {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
}
@media screen and (max-width: 767px) {
    .cart {
        padding: 0px 24px 100px;
    }
    .cart h1 .en {
        font-size: 36px;
    }
    .cart__description {
        margin-top: 50px;
        font-size: 16px;
    }
    .cart__total {
        margin-top: 30px;
        font-size: 22px;
    }
    ul.cart-list {
        margin-top: 50px;
    }
    ul.cart-list li {
        padding: 50px 0;
        letter-spacing: .05em;
    }
    .cart-list__thumbnail {
        width: 80px;
        min-width: 80px;
    }
    .cart-list__content {
        flex-direction: column;
        gap: 16px;
        padding-left: 16px;
    }
    .cart-list__name {
        font-size: 18px;
    }
    .cart-list__size {
        margin-top: 16px;
    }
    .cart__btn a {
        max-width: 100%;
        height: 60px;
        margin: 30px auto 0;
    }
    .cart__btn a::after {
        right: 25px;
    }
    .alert {
        left: 50%;
        right: initial;
        bottom: 30px;
        transform: translate(-50%,0) scale(0.95);
        max-width: 300px;
        height: 60px;
    }
    .alert.show {
        transform: translate(-50%,0) scale(1);
    }
}