/* ===== entry.php 専用スタイル ===== */

.entry-header {
	background: var(--brand-orange);
	padding: 1rem 0;
}

.entry-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #ffffff;
	text-decoration: none;
	font-weight: 900;
	font-size: 1.05rem;
}

.entry-logo img {
	filter: brightness(0) invert(1);
}

.entry-back {
	color: #ffffff;
	text-decoration: none;
	font-size: 0.95rem;
}

.entry-back:hover {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: underline;
}

.entry-hero {
	background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
	color: #ffffff;
	padding: 3rem 0;
	text-align: center;
}

.entry-hero h1 {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 900;
	font-size: 2rem;
	margin-bottom: 0;
}

.entry-steps {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 1.75rem;
	flex-wrap: wrap;
}

.entry-step {
	font-weight: 700;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.5);
}

.entry-step .num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.9rem;
	height: 1.9rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	margin-right: 0.5rem;
}

.entry-step.active {
	color: #ffffff;
}

.entry-step.active .num {
	background: var(--brand-orange);
}

.entry-main {
	padding: 3rem 0 5rem;
}

.entry-card {
	background: #ffffff;
	border: 1px solid rgba(10, 37, 64, 0.08);
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 2rem;
}

.entry-card h2 {
	font-size: 1.3rem;
	font-weight: 900;
	color: var(--brand-blue-deep);
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--brand-sky);
}

.entry-member-block {
	border: 1px dashed rgba(10, 37, 64, 0.2);
	border-radius: 8px;
	padding: 1.25rem;
	margin-bottom: 1.25rem;
}

.entry-member-block:last-child {
	margin-bottom: 0;
}

.entry-member-title {
	font-weight: 800;
	color: var(--brand-orange);
	margin-bottom: 1rem;
}

.entry-honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

.entry-note {
	font-size: 0.9rem;
	color: rgba(10, 37, 64, 0.6);
}

.entry-summary-row {
	display: flex;
	flex-wrap: wrap;
	padding: 0.7rem 0;
	border-bottom: 1px dashed rgba(10, 37, 64, 0.12);
}

.entry-summary-row:last-child {
	border-bottom: none;
}

.entry-summary-label {
	width: 180px;
	flex-shrink: 0;
	font-weight: 700;
	color: var(--brand-blue);
}

.entry-summary-value {
	flex: 1;
	min-width: 0;
}

.entry-complete {
	text-align: center;
	padding: 5rem 0;
}

.entry-footer {
	background: var(--brand-orange);
	color: #ffffff;
	padding: 2rem 0;
	text-align: center;
	font-size: 0.9rem;
}

.entry-footer a {
	color: #ffffff;
}

@media (max-width: 768px) {
	.entry-steps {
		gap: 0.75rem;
	}

	.entry-summary-row {
		flex-direction: column;
	}

	.entry-summary-label {
		width: 100%;
		margin-bottom: 0.2rem;
	}

	.entry-summary-value {
		width: 100%;
	}

	.entry-card {
		padding: 1.25rem;
	}

	.entry-main .btn {
		width: 100%;
	}
}
