/* 初回訪問者向けポップアップ (2026-08 追加)
 * front-page.php の LINE予約訴求バナー(#line_saiyasu_cta)と同内容を、
 * 初回訪問時のみ全ページでモーダル表示する。
 * 通常時は display:none のため、既存レイアウトのLCP/CLSには影響しない。
 */
#eari-first-visit-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
}
#eari-first-visit-popup.is-visible {
	display: block;
}
body.eari-popup-open {
	overflow: hidden;
}
#eari-first-visit-popup .eari-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}
#eari-first-visit-popup .eari-popup-body {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 92%;
	max-width: 560px;
	background: #fff;
	border-radius: 10px;
	padding: 24px;
	box-sizing: border-box;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
#eari-first-visit-popup .eari-popup-close {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 36px;
	height: 36px;
	line-height: 34px;
	text-align: center;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	font-size: 20px;
	color: #494949;
	cursor: pointer;
}
#eari-first-visit-popup .eari-popup-link {
	display: block;
}
#eari-first-visit-popup .eari-popup-body img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
}

@media screen and (max-width: 480px) {
	#eari-first-visit-popup .eari-popup-body {
		padding: 20px 16px;
	}
	#eari-first-visit-popup .eari-popup-close {
		top: -14px;
		right: 4px;
	}
}
