.banner {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	pointer-events: none;
	max-width: 420px;
  width: 100%;
	height: auto;
	border: 2px solid #004098;
	background: #fff;
	position: fixed;
	z-index: 99998;
	bottom: 120px;
	right: 30px;
}
.banner.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.banner-body {
	padding: 37px 0 30px;
}
.banner-body .ttl {
	font-size: 22px;
	font-weight: 600;
	color: #004098;
	background: #EAEEF4;
	padding: 5px 0 5px 25px;
}
.banner-body .col-2 {
  display: flex;
  justify-content: space-between;
	padding: 0 25px;
  align-items: center;
  margin-top: -70px;
	gap: 10px;
}
.banner-body .col-2 p {
	padding-top: 35px;
	font-size: 17px;
	line-height: 1.5;
}
.banner-body .btn {
	max-width: 230px;
	margin: 0 auto;
	padding-top: 15px;
}
.banner-body .btn a {
	background: #004098;
	border: 1px solid transparent;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  padding: 10px 0;
	transition: all .3s;
	text-decoration: none;
}
.banner-body .btn a:hover {
	background: #fff;
	border: 1px solid #004098;
  color: #004098;
}
.banner-close {
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 12px;
	height: 12px;
}
.banner-close::before,
.banner-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 12px;
	background: #707070;
}
.banner-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.banner-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 767px) {
	.banner {
		max-width: none;
		width: 85%;
    bottom: 60px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
	}
	.banner-body {
    padding: 20px 0;
	}
	.banner-body .col-2 {
		padding: 0 15px;
		margin-top: -50px;
	}
	.banner-body .col-2 img {
		width: 77px;
	}
	.banner-body .ttl {
		font-size: 16px;
		padding: 5px 0 5px 15px;
	}
	.banner-body .col-2 p {
		padding-top: 50px;
		font-size: 14px;
	}
	.banner-body .btn {
		padding-top: 0;
		max-width: 114px;
	}
	.banner-body .btn a {
		font-size: 12px;
    padding: 6px 0;
	}
	.banner-close {
    top: 4px;
    right: 7px;
	}
	.sp-none {
		display: none;
	}
}