@charset "utf-8";
/*----------------------------------------------------
custom_2025.css
カスタマイズに利用したCSSを記述
----------------------------------------------------*/

/* カート、合計金額 */
.cart-total-amount-box {
	background-color: #fcf9e1;
	margin:20px 0;
	padding:20px;
	border-radius:5px;

	/* 各項目 */
	.item-list {
		display:flex;
		/* 右揃え */
		justify-content: flex-end;

		/* タイトル */
		.sub-title {
			width: 130px;
			font-weight: bold;

			/* キーワード割引 */
			.discount-text {
				font-weight: bold;
				cursor: pointer;
				color: #0000ff;
			}
		}

		/* 価格 */
		.price {
			width: 120px;
			text-align: right;
		}
		/* 合計金額 */
		.total-price {
			color: #c03061;

			span {
				font-weight: bold;
				font-size: 1.2rem;
			}
		}
	}

}


/* カート、キーワード割引モーダル */
#modal_keyword_box {
	.keyword-text-box {
		border: 1px solid #cccccc;
		padding: 10px;

		p {
			text-align: left;
		}
		input[type="text"] {
			width: 300px;
			margin: 20px 0;
		}
	}
}

/* カート、キーワード割引 */
.discount_keyword {
	color: #bf003f !important;
}
/* テーブル */
th.cart-column-price {
	width: 150px;
}
th.cart-column-delete {
	width: 80px;
}

/* 入稿フォーム */
.draft-about-data-list {
	margin: 20px 0 0 0;
	.em {
		color: #61B7E8;
	}
	dt {
		margin: 10px 0;
	}
	dt::before {
		content: "・";
	}
	dd {
		margin: 0 0 0 1rem;
		label {
			cursor: pointer;
		}
		label:first-of-type {
			margin: 0 20px 0 0;
		}
		input[type="radio"] {
			margin: 0 5px 0 0;
			padding: 0;
			position: relative;
			top: -1px;
		}
	}
}
@media screen and (max-width: 480px) {
	.draft-about-data-list {
		dd {
			label {
				margin: 5px 0 0 0;
				display: block;
			}
		}
	}
}

/* データ不備が見つかった場合の対処方法 */
.about-data-title {
	padding: 5px;
	background-color: #ccc;
	margin: 10px 0;
}