/* 年齢確認ゲート（ダーク×ゴールド） */
.atd-age-gate {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(8, 7, 5, 0.94);
	padding: 20px;
	animation: atdAgeFade 0.5s ease both;
}
.atd-age-card { animation: atdAgeRise 0.6s ease both; }
@keyframes atdAgeFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes atdAgeRise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
	.atd-age-gate, .atd-age-card { animation: none; }
}
.atd-age-card {
	width: 100%;
	max-width: 360px;
	text-align: center;
	color: #e8e2d6;
	font-family: "Noto Sans JP", sans-serif;
}
.atd-age-eyebrow {
	letter-spacing: 0.35em;
	font-size: 10px;
	color: #8c8472;
	margin: 0 0 22px;
}
.atd-age-rule {
	width: 40px;
	height: 1px;
	background: #c8a45c;
	margin: 0 auto 22px;
}
.atd-age-logo {
	font-family: "Shippori Mincho", "Yu Mincho", serif;
	color: #c8a45c;
	font-size: 30px;
	letter-spacing: 0.18em;
	margin: 0 0 8px;
	font-weight: 600;
}
.atd-age-sub {
	font-family: "Shippori Mincho", serif;
	font-size: 12px;
	color: #8c8472;
	letter-spacing: 0.28em;
	margin: 0 0 36px;
}
.atd-age-lead {
	font-size: 13px;
	color: #b8b0a0;
	line-height: 2;
	margin: 0 0 28px;
}
.atd-age-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.atd-age-yes,
.atd-age-no {
	width: 100%;
	padding: 12px;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	font-family: inherit;
}
.atd-age-yes {
	background: #c8a45c;
	color: #141109;
	border: none;
	font-weight: 500;
}
.atd-age-no {
	background: transparent;
	color: #c8a45c;
	border: 1px solid #4a3f29;
}
.atd-age-note {
	font-size: 10px;
	color: #5f5a4d;
	line-height: 1.8;
	margin: 26px 0 0;
}
html.atd-locked,
body.atd-locked {
	overflow: hidden;
}
