@charset "utf-8";

/* **************************************************

Name: floatBnr.css

Description: CSS for Additional Common Modules

Create: 2024.5.31
Update: 

Copyright 2017 Hitachi High-Technologies Corporation.

***************************************************** */

.floatBnr {
	position: fixed;
	right: 3%;
	bottom: 130px;
	z-index: 999;
	filter: drop-shadow(0 0 3px rgba(0, 0, 0, .45));
	
	opacity: 0;
	visibility: collapse;
	
	-webkit-transition: all .6s;
	transition: all .6s;
}

.floatBnr.active {
	opacity: 1;
	visibility: visible;
	
	-webkit-transition: all .8s;
	transition: all .8s;
}

@media screen and (max-width: 767px) {
	.floatBnr {
		width: 290px;
		right: 4%;
	}
}

@media screen and (max-width: 599px) {
	.floatBnr {
		width: 240px;
		bottom: 20px;
	}
}

.floatBnr .img img {
	max-width: 100%;
}

.floatBnr .close {
	display: block;
	content: '';
	width: 36px;
	height: 36px;
	cursor: pointer;
	
	position: absolute;
	top: -18px;
	right: -18px;
	
	border-radius: 50%;
	background: #fff;
	filter: drop-shadow(0 0 3px rgba(0, 0, 0, .45));
	
	-webkit-transition: all .4s;
	transition: all .4s;
}

.floatBnr .close:hover {
	background: #000;
	
	-webkit-transition: all .4s;
	transition: all .4s;
}

@media screen and (max-width: 599px) {
	.floatBnr .close {
		width: 26px;
		height: 26px;
		top: -13px;
		right: -13px;
	}
}


.floatBnr .close:after {
	content: '';
	width: 20px;
	height: 1px;
	background: #666666;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	
	-webkit-transition: all .4s;
	transition: all .4s;
}

.floatBnr .close:hover:after {
	background: #ffffff;
	
	-webkit-transition: all .4s;
	transition: all .4s;
}

.floatBnr .close:before {
	content: '';
	width: 20px;
	height: 1px;
	background: #666666;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	
	-webkit-transition: all .4s;
	transition: all .4s;
}

.floatBnr .close:hover:before {
	background: #ffffff;
	
	-webkit-transition: all .4s;
	transition: all .4s;
}