@charset 'UTF-8';

.top-fixedbanner{
	position:fixed;
	bottom:86px;
	right:0;
	z-index:9;
}
.top-fixedbanner__close{
	position:absolute;
	display:flex;
	align-items:center;
	justify-content:center;
	top:0;
	left:0;
	transform:translate(-50%,-50%);
	width:40px;
	height:40px;
	border-radius:50%;
	background:#FFF;
	z-index:2;
	cursor:pointer;
	filter:drop-shadow(3px 3px 5px rgba(0,0,0,0.5));
}
.top-fixedbanner__close::before{
	content:'';
	width:18px;
	height:2px;
	background:var(--navy);
	position:absolute;
	top:calc(50% - 1px);
	left:11px;
	transform:rotate(45deg);
	pointer-events:none;
}
.top-fixedbanner__close::after{
	content:'';
	width:18px;
	height:2px;
	background:var(--navy);
	position:absolute;
	top:calc(50% - 1px);
	left:11px;
	transform:rotate(-45deg);
	pointer-events:none;
}
.top-fixedbanner a{
	color:#FFF;
	background:var(--navy);
	border-radius:10px;
	padding:24px 20px 24px 40px;
	display: block;
}
.top-fixedbanner__title {
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 29px;
    font-family: var(--jakarta);
    line-height: 1;
    margin-bottom: 10px;
}
.top-fixedbanner__title span {
    color: #E60011;
}
.top-fixedbanner__body{
    display: flex;
    align-items: center;
}
.top-fixedbanner__body--text{
	font-size:19px;
	line-height: 1.4;
}
.top-fixedbanner__body--icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    background-color: #fff;
    margin-left: 20px;
    vertical-align: middle;
}
.top-fixedbanner__body--icon::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 20px;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    background: url(img/common/view-more-arrow.svg) no-repeat center center / contain;
}
.top-fixedbanner__body--icon::after{
	content: "";
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: -1;
    background: linear-gradient(#ffeadb 0%, #056684 100%);
    border-radius: 50%;
    transition: var(--transition);
}

@media only screen and (max-width:991px){
	.top-fixedbanner__body--icon{
		width: 46px;
        height: 46px;
	}
	.top-fixedbanner__body--icon::before{
		width: 18px;
        height: 16px;
	}
}

@media only screen and (max-width:767px){
	.top-fixedbanner a{
		padding:20px;
	}
	.top-fixedbanner__title{
		font-size: 18px;
        margin-bottom: 6px;
	}
	.top-fixedbanner__body--text{
		font-size:14px;
		width:auto;
	}
	.top-fixedbanner__body--icon{
		width:36px;
		height:36px;
	}
	.top-fixedbanner__body--icon::before{
		width: 14px;
        height: 12px;
	}
}