/* popup_v2.css - 利用規約・プライバシーポリシー同意バー専用 */

#ib-consent {
	background: #2a2a2a;
	color: #fff;
	border-radius: 6px;
	padding: 12px 36px 12px 14px;
	font-size: 12px;
	line-height: 1.6;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
	box-sizing: border-box;
	opacity: 0;
	transition: opacity 0.25s ease;
}

#ib-consent.is-open {
	opacity: 1;
}

#ib-consent .ib-consent__text {
	margin: 0;
}

#ib-consent a {
	color: #8ab4ff;
	text-decoration: underline;
}

#ib-consent a:hover {
	color: #b6cfff;
}

#ib-consent .ib-consent__close {
	position: absolute;
	top: 4px;
	right: 6px;
	width: 24px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#ib-consent .ib-consent__close::before {
	content: "×";
}

/* バナー同梱: オーバーレイ内の下部 */
#ib-popup-overlay #ib-consent.ib-consent--in-overlay {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 32px);
	max-width: 640px;
	z-index: 1;
}

/* 単独表示: ページ下部に固定（viewport 基準で中央寄せ） */
#ib-consent.ib-consent--standalone {
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100vw - 32px);
	max-width: 640px;
	z-index: 99997;
}

@media (max-width: 600px) {
	#ib-consent {
		font-size: 11px;
		padding: 10px 32px 10px 12px;
	}
	#ib-popup-overlay #ib-consent.ib-consent--in-overlay {
		bottom: 8px;
		width: calc(100% - 16px);
	}
	#ib-consent.ib-consent--standalone {
		bottom: 8px;
		width: calc(100vw - 16px);
	}
}
