/*---------------------------------------
	フローティングバナー
---------------------------------------*/
.floating-banner {
	/*display: none;*/
	max-width: 290px;
	z-index: 10000;
	position: fixed !important;
	left: 10px;
	bottom:0;
	/*padding:10px;*/
	background-color:#FFF;
	border:1px solid #d9d9d9;
	border-radius:5px;
	box-shadow:0 6px 15px 0 rgba(0,0,0,0.4);
}
.floating-banner a {
	text-decoration: none;
	color:#000;
	transition:.3s;
}
.floating-banner a:hover {
	opacity:.7;
}
.floating-banner_pic01{
	text-align:center;
	margin:10px 0 0;
}
.floating-banner_pic02{
	text-align:center;
	margin:10px 30px;
}
.floating-banner_pic01 img,
.floating-banner_pic02 img{
	max-width:100%;
}
.floating-banner_ttl{
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	margin:10px;
}
.floating-banner_txt{
	font-size:12px;
	line-height:1.6;
	text-align:center;
	margin:10px;
}
.floating-banner_dl{
	color:#FFF;
	font-size:12px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	background-color:#000;
	border-radius:100px;
	padding:5px;
	margin:10px;
}

/*閉じるボタン*/
.floating-banner .banner-close {
  background-color: #333;
  color: white;
  border: none;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  top: -0.75em;
  right: -0.75em;
  z-index: 1;
  cursor: pointer;
}
.floating-banner .banner-close::before, .floating-banner .banner-close::after {
  content: "";
  display: block;
  background-color: white;
  width: 1px;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%;
}
.floating-banner .banner-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.floating-banner .banner-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.floating-banner.delete {
  display: none !important;
}

/*SP時 非表示*/
@media screen and (max-width: 480px) {
	.floating-banner {
		display:none;
	}
}