@charset "utf-8";
/* CSS Document */

h1,h2,h3,h4,h5 {
	font-weight: normal;
}

/*================================
	product
=================================*/

.l-contents {
    /*background: var(--color__gray--lighter);*/
	background: #FFFFFF;
}

.c-breadcrumb:last-of-type {
    margin-bottom: 20px;
}

.p-product-detail .product__name {
    margin-top: 10px;
    font-size: 20px;
	line-height: 1.3;
    font-weight: 600;
}

.p-product-detail .product__price {
    margin-top: .5em;
}

.p-product-detail .product__sale-price-value {
    color: #e95471;
}
.c-button-group {
    gap: 0;
}
.c-button--gradient-green {
    color: #FFFFFF;
    background: #EF7A62;
    background: linear-gradient(to bottom, #EF7A62 0%, #ed6346 100%);
    border: 1px solid #EF7A62;
}
.c-button--gradient-green:link {
	text-decoration: none !important;
}
.p-product-detail .product__quantity-label {
    font-size: 14px;
    font-weight: 500;
}
.p-product-detail .product__quantity {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
}
.p-product-detail .product__quantity-value {
    width: 70px;
}

.p-product-detail .product__price {
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:flex;
	-webkit-box-pack:space-between;
	-moz-box-pack:space-between;
	-webkit-flex-pack:space-between;
	-moz-flex-pack:space-between;
	-ms-flex-pack:space-between;
	-webkit-justify-content:space-between;
	-moz-justify-content:space-between;
	justify-content:space-between;
}

.p-product-detail .product__sale-price {
    margin-right: 10px;
}
.p-product-detail .product__row {
    margin-top: 12px;
	font-size: 13px;
}
.p-product-detail .product__cart-button {
    margin-top: 20px;
}