.section-cart {
	padding: 50px 0;
}

.section-cart__ttl {
	margin-bottom: 25px;
}

.section-cart__btn {
	font-size: 25px;
	font-weight: 400;
	font-family: var(--font-anton);
}

.cart-block {
	align-items: start;
	gap: 20px 0;
}

.cart-block:not(:last-child) {
	margin-bottom: 30px;
}

.cart-block__ttl {
	font-size: 25px;
	font-weight: 800;
	margin-bottom: 20px;
}

.cart-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.cart-list__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	background: white;
	border: 1px solid #DCDCDC;
	box-shadow: 0px 4px 4px 0px #00000040;
	padding: 12px 15px;
	border-radius: 15px;
	gap: 10px;
}

.cart-list__figure {
	width: 135px;
	height: 135px;
}

.cart-list__ttl {
	font-size: 15px;
	width: 45%;
	text-align: center;
	font-weight: 700;
}

.cart-list__ttl>a {
	color: inherit;
}

.cart-list__wqty .quantity {
	width: 91px;
	margin-bottom: 0;
}

.cart-list__wqty .quantity__btn {
	font-size: 20px;
	width: calc((100% - 30px) / 2);
}

.cart-list__wqty .quantity__input {
	width: 30px;
	font-size: 16px;
}

.cart-list__price {
	width: 135px;
	font-weight: 700;
}

.cart-block__panel .cart-panel {}

.cart-panel {
	box-shadow: 0px 4px 4px 0px #00000040;
	border: 1px solid #DCDCDC;
	padding: 25px;
	background: white;
	border: 1px solid #DCDCDC;
	box-shadow: 0px 4px 4px 0px #00000040;
	border-radius: 15px;
}

.cart-panel:not(:last-child) {
	margin-bottom: 20px;
}

.cart-panel__ttl {
	font-size: 25px;
	font-weight: 700;
	border-bottom: 1px solid #C1C1C1;
	margin-bottom: 20px;
}

.cart-panel__text {
	font-size: 22px;
	font-weight: 700;
}

.cart-panel__text:not(:last-child) {
	margin-bottom: 20px;
}


.cart-panel__wbtn .c-btn-01 {
	min-width: auto;
}

.cart-form {}

.cart-form__ttl {
	margin-bottom: 35px;
}

.cart-form__group {
	border-bottom: 1px solid #ADADAD
}

.cart-form__group:not(:last-child) {
	margin-bottom: 30px;
}

.cart-form__input {
	width: 100%;
	font-size: 20px;
	height: 36px;
	padding: 5px;
}

.cart-form__group .clm {
	flex: 1;
}

.cart-form__label {
	font-size: 20px;
	font-weight: 400;
}

.cart-form__note {
	text-align: center;

}

.cart-form__note-ttl {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.cart-form__textarea {
	box-shadow: 0px 4px 4px 0px #00000040;
	border: 1px solid #B2B2B2;
	max-width: 474px;
	height: 96px;
	width: 100%;
	border-radius: 20px;
	margin: 0 auto;
	background: #FBF5F5;
	padding: 20px;
	font-size: 20px;
	resize: none;
}

.cart-list2 {
	border-bottom: 1px solid #C1C1C1;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.cart-list2__item:not(:last-child) {
	margin-bottom: 15px;
}

.cart-list2__ttl {
	font-size: 15px;
	font-weight: 400;
	font-family: var(--font-anton);
	width: calc(100% - 130px);
}

.cart-list2__price {
	width: 120px;
	text-align: right;
	font-weight: 400;
	font-family: var(--font-anton);
}

.cart-list2__ttl>a {
	color: inherit;
}

.cart-panel__fee {
	border-bottom: 1px solid #C1C1C1;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.cart-panel__fee-flex {
	font-size: 20px;
}

.cart-panel__fee-price {
	font-size: 15px;
	font-weight: 400;
	font-family: var(--font-anton);
}

.cart-panel__fee-note {
	color: #F90000;
	font-weight: 600;
}

.cart-options {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cart-options__btn {
	font-size: 20px;
	font-weight: 600;
	padding: 11px 21px;
	border: 1px solid #000000;
	color: #476800;
	border-radius: 20px;
	text-align: left;
	justify-content: flex-start;
}

.cart-options__btn.active {
	background: #476800;
	color: white;
	border-color: #476800;
}

.options-content {
	display: none;
}

.options-content.active {
	display: block;
}

.options-content__flex {
	justify-content: space-between;
	gap: 20px 0;
}

.options-content__flex-img {
	width: 192px;
}

.options-content__flex-ct {
	font-size: 20px;
	font-weight: 600;
	width: calc(100% - 210px);
}

.options-content__flex-note {
	color: #FD9800;
	margin-top: 25px;
}

.section-cart__success {
	text-align: center;
	max-width: 770px;
	margin: 0 auto;
}

.section-cart__success-ttl {
	font-size: 50px;
	font-weight: 800;
}

.section-cart__success-desc {
	font-size: 35px;
}

@media screen and (max-width: 992px) {
	.section-cart__success-ttl {
		font-size: 30px;
	}

	.section-cart__success-desc {
		font-size: 18px;
	}

	.cart-list__figure {
		width: 100px;
		height: 100px;
	}

	.cart-list {
		gap: 20px;
	}

	.section-cart {
		padding: 30px 0;
	}

	.cart-panel__ttl {
		font-size: 22px;

	}

	.cart-panel__text {
		font-size: 18px;
	}

	.cart-block__ttl {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.cart-form__input {
		font-size: 15px;
		height: 25px;
	}

	.cart-form__textarea {
		font-size: 15px;
		padding: 10px;
	}

	.cart-form__label {
		font-size: 15px;
	}

	.cart-form__group:not(:last-child) {
		margin-bottom: 15px;
	}

	.cart-panel {
		padding: 15px;
	}

	.cart-form__note-ttl {
		margin-bottom: 5px;
	}

	.cart-options {
		gap: 10px;
	}

	.section-cart__btn {
		font-size: 20px;
	}

	.cart-options__btn {
		font-size: 16px;
	}
}

@media screen and (max-width: 640px) {
	.cart-list__item {
		display: grid;
		grid-template-columns: 100px calc(100% - 110px);
		gap: 5px 10px;
	}

	.cart-list__img {
		grid-row: span 3;
	}

	.cart-list__ttl {
		width: 100%;
		text-align: left;
	}
}
