@charset "utf-8";

.floating-button {
	position: fixed;
	right: 10px;
	bottom: -200px;
	width: 180px;
	height: 180px;
	color: #fff;
	background-color: #00a9ea;
	text-decoration: none;
	opacity: 0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-content: center;
	z-index: 10;

	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;

	transform: scale(1.0);
	transition: transform .5s;
}

@media (max-width: 1380px) {
	.floating-button {
		right: -15px;
		transform: scale(0.7);
	}
}

@media (min-width: 1440px) {
	.floating-button {
		left: calc(980px + (100% - 980px) / 2 + 40px);
	}
}


.floating-button:hover {
	transform: scale(1.1);
	transition: transform .5s;
}
@media (max-width: 1380px) {
	.floating-button:hover {
		transform: scale(0.8);
	}
}

.floating-button .button-image {
	width: 122px;
	height: 29px;
	margin-top: 16px;
}

.floating-button .border-line {
	width: 80%;
	border-top: 1px solid #d0d0d0;
	margin: 12px 0 12px 0;
}

.floating-button .button-text {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	line-height: 28px;
}

.floating-button .button-text .text-line2 {
	margin: 4px 0 0 0;
	font-size: 22px;
}

.floating-button .button-text .text-line2::before{
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url(../images/arrow_right.svg) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 29px;
	left: 30px;
	margin: -10px 0 0 0;
}

.floating-button .button-text .text-line2::after{
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url(../images/arrow_left.svg) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 29px;
	right: 30px;
	margin: -10px 0 0 0;
}
