@charset "UTF-8";



/****************************************************
 * 年齢確認デザイン
 *	│
 *	└──「tmp-user」に、別のコードも入力している
 *		├──head-insert.php
 *		└──footer-insert.php
 ****************************************************/

#age-check-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6); /* 黒を弱める */
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.age-check-box {
	background: #fff; /* 白ベースに変更 */
	color: #333;
	max-width: 520px;
	width: 92%;
	padding: 28px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.age-check-box h2 {
	font-size: 18px;
	margin-bottom: 12px;
	font-weight: 600;
}
.age-check-box p {
	font-size: 13px;
	line-height: 1.7;
	color: #555;
}
.age-check-buttons {
	margin-top: 24px;
	display: flex;
	gap: 12px;
	justify-content: center;
}
.age-check-buttons button {
	padding: 10px 18px;
	font-size: 14px;
	cursor: pointer;
	border-radius: 6px;
	border: 1px solid #ccc;
	background: #f5f5f5;
}
#age-yes {
	background: #2b2b2b; /* 黒寄りだが主張しすぎない */
	color: #fff;
	border-color: #2b2b2b;
}
#age-no {
	background: #fff;
	color: #666;
}


