/** @format */

@charset "UTF-8";

.banner-top {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.7);
	display: grid;
	place-items: center;
}

.banner-top_inner {
	position: relative;
	display: inline-block;
}

.banner-top img {
	width: 600px;
	max-width: 90vw;
}

.banner-close {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(40%, -40%);
	width: 60px;
	max-width: 10%;
	height: auto;
	aspect-ratio: 1 / 1;
	background: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	opacity: 1;
	z-index: 101;
	padding: 0;
}

.banner-close img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
}

.banner-close:hover {
	filter: invert(1);
}

.banner-floating {
	position: fixed;
	bottom: 163px;
	right: 20px;
	z-index: 12;
	transition: all 0.4s ease;
}

.banner-floating.is-scroll {
	scale: 0.85;

	.banner-floating__link__text {
		color: transparent;
	}
}

.banner-floating__link {
	display: block;
}

.banner-floating__link__text {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0.06em;
	text-align: center;
	margin-bottom: 4px;
}

.banner-floating__link__img {
	width: 194px;
	height: 194px;
	transition: all 0.3s ease;
}

.banner-floating-sp {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 3;
	transition: all 0.4s ease;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.banner-floating-sp__link {
	display: block;
}
