.home-float-bnr {
	position: fixed;
	z-index: 15;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px);
	transition:
		opacity 0.35s ease,
		visibility 0.35s ease,
		transform 0.35s ease;
}

.home-float-bnr.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.home-float-bnr.is-closed {
	display: none;
}

.home-float-bnr__close {
	position: absolute;
	top: -8px;
	right: -8px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background-color: var(--mh--color--grayscale-900, #222);
	color: var(--mh--color--grayscale-100, #fff);
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.home-float-bnr__close-ico {
	position: relative;
	display: block;
	width: 12px;
	height: 12px;
}

.home-float-bnr__close-ico::before,
.home-float-bnr__close-ico::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 1.5px;
	background-color: currentColor;
}

.home-float-bnr__close-ico::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.home-float-bnr__close-ico::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.home-float-bnr__link {
	display: block;
	line-height: 0;
}

.home-float-bnr__link img {
	display: block;
	width: auto;
	height: auto;
	max-width: 200px;
}

/* SP: 右下（下部固定CTAの上） */
@media (max-width: 767px) {
	.home-float-bnr {
		right: 12px;
		bottom: calc(49px + 16px);
	}
}

/* PC: 下部中央 */
@media (min-width: 768px) {
	.home-float-bnr {
		left: 50%;
		bottom: 24px;
		transform: translate(-50%, 12px);
	}

	.home-float-bnr.is-visible {
		transform: translate(-50%, 0);
	}

	.home-float-bnr__link img {
		max-width: 700px;
	}
}
