@charset "UTF-8";
/* CSS Document */

#floatingBanner {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 5;
	width: 280px;
	color: #fff;
	border-radius: 10px;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.16);
	opacity: 0;
	animation: floatingBanner_show 1s 1s forwards;
	font-family: Meiryo,"Hiragino Kaku Gothic ProN","Helvetica Neue",Arial,sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@keyframes floatingBanner_show {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
#floatingBanner .closeBtn {
	position: absolute;
	right: -15px;
	top: -15px;
	z-index: 1;
	width: 30px;
	height: 30px;
	background: rgba(0,0,0,0.5) url("/image/hsl/special/cloud/ayamo/plus/close.svg") center center no-repeat;
	border-radius: 50%;
	cursor: pointer;
}
#floatingBanner a {
	display: block;
	color: inherit;
	border-radius: 10px;
	overflow: hidden;
	background: linear-gradient(135deg,#75D7FA,#2956A0);
}
#floatingBanner .inner {
	padding: 20px 20px 12px;
}
#floatingBanner .image {
	overflow: hidden;
	margin-bottom: 20px;
	background: #fff;
}
#floatingBanner .image img {
	width: 100%;
	transition: transform 0.3s;
	will-change: transform;
}
#floatingBanner a:hover .image img {
	transform: scale(1.1);
}
#floatingBanner .wrap-text {
	transition: opacity 0.15s;
}
#floatingBanner .t1 {
	font-size: 12px;
	line-height: 1.5;
}
#floatingBanner .t2 {
	font-size: 15px;
	line-height: 1.5;
	font-weight: bold;
	margin-top: 10px;
}
#floatingBanner .t_bottom {
	background: rgba(49,77,167,0.5);
	height: 50px;
	padding: 0 20px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	transition: opacity 0.15s;
}
#floatingBanner a:hover .wrap-text {
	opacity: 0.8;
}
#floatingBanner a:hover .t_bottom {
	opacity: 0.8;
}


.mainBlock .mainTxtWrap .topHd sup {
	margin: 0;
	font-size: 0.25em;
	vertical-align: 1.6em;
	line-height: 1;
	font-weight: normal;
	margin-left: -0.2em;
}
.mainBlock .mainTxtWrap .mainTxtContainer .text .desc {
	margin-left: 10px;
}
.mainBlock .mainTxtWrap {
	padding-bottom: 40px;
}
.mainBlock .mainTxtWrap + small {
	font-size: 10px;
	line-height: 1.5;
	color: #fff;
	/*margin: 30px 0 0 -50px;*/
	position: absolute;
	left: 15px;
	bottom: 8px;
	z-index: 100;
}