/* Coming Soon モーダル（3サイト共通） */
.s2rj-cs-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.78);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	animation: s2rj-cs-fade 0.18s ease-out;
}
.s2rj-cs-overlay[hidden] {
	display: none;
}
.s2rj-cs-dialog {
	position: relative;
	width: 100%;
	max-width: 380px;
	padding: 40px 28px 32px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	background: #111;
	color: #fff;
	text-align: center;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
	animation: s2rj-cs-pop 0.2s ease-out;
}
.s2rj-cs-close {
	position: absolute;
	top: 10px;
	right: 14px;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.55);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}
.s2rj-cs-close:hover {
	color: #fff;
}
.s2rj-cs-badge {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3px;
	color: #c8a24a;
}
.s2rj-cs-title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 1px;
}
.s2rj-cs-text {
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.75);
}
.s2rj-cs-ok {
	display: inline-block;
	min-width: 140px;
	padding: 12px 28px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	transition: opacity 0.15s;
}
.s2rj-cs-ok:hover {
	opacity: 0.82;
}
@keyframes s2rj-cs-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes s2rj-cs-pop {
	from { opacity: 0; transform: translateY(8px) scale(0.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}
