/* チェックアウトページ全体のコンテナ */
.checkout-container {
	padding: 20px;
	max-width: 800px;
	margin: 0 auto;
	font-family: sans-serif;
}

.checkout-container h2 {
	text-align: center;
	margin-bottom: 30px;
	color: #333;
}

.checkout-container h3 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: #555;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

/* ご注文商品セクション */
#checkout-cart-summary {
	margin-bottom: 30px;
	border: 1px solid #eee;
	padding: 15px;
	background-color: #f9f9f9;
}

#checkout-cart-items .checkout-cart-item {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 10px;
}

#checkout-cart-items .checkout-cart-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.checkout-item-image {
	width: 60px; /* サイズ調整 */
	height: auto;
	margin-right: 15px;
	border: 1px solid #ddd;
}

.checkout-item-details {
	flex-grow: 1;
}

.checkout-item-name {
	margin: 0 0 5px 0;
	font-weight: bold;
}

.checkout-item-price-quantity {
	margin: 0;
	font-size: 0.9em;
	color: #555;
}

.checkout-item-subtotal {
	margin: 0;
	min-width: 80px; /* 幅を確保 */
	text-align: right;
	font-weight: bold;
}

#checkout-cart-totals {
	margin-top: 15px;
	text-align: right;
}

#checkout-cart-totals p {
	margin: 5px 0;
}

/* お客様情報入力フォーム */
#checkout-form .form-group {
	margin-bottom: 15px;
}

#checkout-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #444;
}

#checkout-form input[type="text"],
#checkout-form input[type="email"],
#checkout-form input[type="tel"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	border-radius: 4px;
}

/* お支払い方法セクション */
.section-title {
	/* h3 と共通のスタイルを持たせることも検討 */
	margin-top: 30px;
	margin-bottom: 15px;
	color: #555;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

.payment-method-section {
	border: 1px solid #eee;
	padding: 15px;
	background-color: #f9f9f9;
	margin-bottom: 20px;
}

.payment-method-section h4 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #333;
}

.bank-details {
	margin-bottom: 15px;
	padding-left: 10px;
	border-left: 3px solid #ba963b; /* アクセントカラー */
}

.bank-details p {
	margin: 5px 0;
	line-height: 1.6;
}

.payment-notes {
	font-size: 0.9em;
	color: #777;
	margin-top: 5px;
}

/* 注文確定ボタン */
.submit-button {
	background-color: #ba963b;
	color: white;
	padding: 15px 25px;
	border: none;
	cursor: pointer;
	font-size: 16px;
	margin-top: 20px;
	border-radius: 4px;
	display: block; /* 中央寄せや幅調整のため */
	width: 100%; /* 幅いっぱいに */
	text-align: center;
}

.submit-button:hover {
	background-color: #a88530; /* ホバー色 */
}
