/* ========================================
   Web Push ソフト許諾UI（cl-push-subscribe.js が生成）
   設計書 2.3 準拠: PC=右下スライドインカード / SP=ボトムシート
   z-index 10000（フッターバナー 9999 の上）
   ======================================== */

.cl-push-ask {
	position: fixed;
	z-index: 10000;
	right: 24px;
	bottom: 24px;
	width: 380px;
	max-width: calc(100vw - 32px);
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12), 0 8px 32px rgba(0, 0, 0, 0.14);
	padding: 20px;
	box-sizing: border-box;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cl-push-ask.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.cl-push-ask__close {
	position: absolute;
	top: 10px;
	right: 12px;
	border: none;
	background: transparent;
	font-size: 14px;
	color: #9a9a9a;
	cursor: pointer;
	padding: 6px;
	line-height: 1;
}

.cl-push-ask__icon {
	font-size: 26px;
	line-height: 1;
	margin-bottom: 8px;
}

.cl-push-ask__title {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.5;
	margin: 0 0 6px;
}

.cl-push-ask__body {
	font-size: 13px;
	color: #555;
	line-height: 1.6;
	margin: 0 0 14px;
}

.cl-push-ask__cta {
	display: block;
	width: 100%;
	background: #8b5e3c;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	border: none;
	border-radius: 999px;
	padding: 13px 16px;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.cl-push-ask__cta:hover {
	opacity: 0.85;
}

.cl-push-ask__cta:disabled {
	opacity: 0.6;
	cursor: default;
}

.cl-push-ask__later {
	display: block;
	width: 100%;
	background: transparent;
	border: none;
	color: #9a9a9a;
	font-size: 12px;
	margin-top: 10px;
	cursor: pointer;
	text-align: center;
	padding: 4px;
}

@media (max-width: 600px) {
	.cl-push-ask {
		right: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		max-width: 100%;
		border-radius: 16px 16px 0 0;
		padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
	}
}
