/* ステップインジケーター */
#stepIndicator {
	margin-bottom: 2rem;
}

.step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.step-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.9rem;
	color: #ccc;
	background: #fff;
	transition: all 0.3s;
}

.step-item.active .step-circle {
	border-color: var(--gcolor-orange, #c8602a);
	color: var(--gcolor-orange, #c8602a);
	background: #fff5f0;
}

.step-item.done .step-circle {
	border-color: var(--gcolor-orange, #c8602a);
	background: var(--gcolor-orange, #c8602a);
	color: #fff;
}

.step-label {
	font-size: 0.75rem;
	color: #aaa;
	white-space: nowrap;
}

.step-item.active .step-label,
.step-item.done .step-label {
	color: var(--gcolor-orange, #c8602a);
	font-weight: 600;
}

.step-line {
	width: 60px;
	height: 2px;
	background: #ccc;
	margin-bottom: 22px;
	flex-shrink: 0;
}

/* 公演カード */
.performance-card {
	border: 1px solid #e0d9cc;
	border-radius: 10px;
	padding: 1rem;
	background: #fff;
}

.performance-card .performance-title {
	font-size: 1.05rem;
	font-weight: bold;
}

.performance-card .performance-meta {
	font-size: 0.85rem;
	color: #888;
	margin-top: 4px;
}

.ticket-type-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #f0ebe2;
	gap: 8px;
}

.ticket-type-row:last-child {
	border-bottom: none;
}

.ticket-type-name {
	font-size: 0.9rem;
	flex: 1;
}

.ticket-type-price {
	font-size: 0.9rem;
	color: #666;
	width: 70px;
	text-align: right;
}

.quantity-control {
	display: flex;
	align-items: center;
	gap: 8px;
}

.quantity-control button {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid #ccc;
	background: #fff;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.quantity-control button:hover {
	background: #f5f0e8;
	border-color: var(--gcolor-orange, #c8602a);
}

.quantity-control .qty {
	min-width: 24px;
	text-align: center;
	font-weight: bold;
}

/* カートアイテム */
.cart-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.88rem;
	padding: 6px 0;
	border-bottom: 1px solid #f0ebe2;
}

.cart-item:last-child {
	border-bottom: none;
}

.cart-item-remove {
	background: none;
	border: none;
	color: #aaa;
	cursor: pointer;
	font-size: 1rem;
	padding: 0 4px;
}

.cart-item-remove:hover {
	color: #c00;
}

/* 予約完了 */
.reservation-code-box {
	background: #fff5f0;
	border: 2px solid var(--gcolor-orange, #c8602a);
	border-radius: 10px;
	padding: 1.5rem;
	display: inline-block;
	min-width: 220px;
}

.reservation-code {
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 6px;
	color: var(--gcolor-orange, #c8602a);
}

/* ボタン */
.btn-custom-orange {
	background: var(--gcolor-orange, #c8602a);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 20px;
	font-weight: bold;
}

.btn-custom-orange:hover {
	background: #a84e22;
	color: #fff;
}

.btn-custom-gray {
	background: #eee;
	color: #555;
	border: none;
	border-radius: 8px;
	padding: 10px 20px;
	font-weight: bold;
}

.btn-custom-gray:hover {
	background: #ddd;
	color: #333;
}

.section-title {
	font-size: 1.1rem;
	font-weight: bold;
	border-left: 4px solid var(--gcolor-orange, #c8602a);
	padding-left: 10px;
}

/* イベントグループ見出し（公演選択・完了画面） */
.performance-event-heading {
	font-size: 1rem;
	font-weight: bold;
	color: var(--gcolor-orange, #c8602a);
	border-bottom: 2px solid var(--gcolor-orange, #c8602a);
	padding-bottom: 6px;
	margin-bottom: 10px;
	margin-top: 16px;
}

.performance-event-heading:first-child {
	margin-top: 0;
}

.complete-event-group {
	margin-bottom: 1rem;
}

.complete-event-heading {
	font-size: 0.95rem;
	font-weight: bold;
	color: var(--gcolor-orange, #c8602a);
	border-bottom: 2px solid var(--gcolor-orange, #c8602a);
	padding-bottom: 4px;
	margin-bottom: 8px;
}
