@charset "utf-8";
main{
	overflow: hidden;
}
.main_v{
	width: 100%;
	height: auto;
}
.main_v h2{
	width: 100%;
	height: auto;
}
.main_v h2 img{
	width: 100%;
	height: auto;
	display: block;
}
/*contents01ここから*/
.contents01{
	width: 100%;
	height: auto;
	display: block;
	background-color: #F4F4F4;
}
.inc01{
	margin: -36px auto 0;
}
@media only screen and (max-width: 767px){
	.inc01{
		margin: -40px auto 0;
	}
}

.contents01 .contents01_02{
	width: 1080px;
	height: auto;
	margin: 0 auto;
	padding: 105px 0 100px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media only screen and (max-width: 767px){
	.contents01 .contents01_02{
		width: 90%;
		max-width: 335px;
		padding: 72px 0 40px;
		display: block;
	}
}
.contents01 .contents01_02 .left_cont{
	width: 530px;
	height: auto;
	flex-shrink: 0;
}
.contents01 .contents01_02 .left_cont h3{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	font-size: 30px;
	line-height: 45px;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
}
.contents01 .contents01_02 .left_cont h3 .span01{
	font-size: 42px;
	line-height: 45px;
}
.contents01 .contents01_02 .left_cont h3 .span02{
	background: linear-gradient(
	  transparent 69%, /* ここまで透明 */
	  #FFE940 69%,     /* ここから黄色 */
	  #FFE940 70%      /* 60%まで黄色 */
	);
	line-height: 45px;
}
@media only screen and (max-width: 767px){
	.contents01 .contents01_02 .left_cont h3 .span02{
		background: linear-gradient(
		  transparent 69%, /* ここまで透明 */
		  #FFE940 69%,     /* ここから黄色 */
		  #FFE940 70%      /* 60%まで黄色 */
		);
		line-height: 24px;
	}
}
.contents01 .contents01_02 .left_cont ul{
	width: 100%;
	height: auto;
	display: block;
}
.contents01 .contents01_02 .left_cont ul li{
	width: 100%;
	height: auto;
	position: relative;
	padding: 20px;
	transition: all .5s;
	cursor: pointer;
	border-bottom: 1px dashed #707070;
}
.contents01 .contents01_02 .left_cont ul li::before{
	content:'';
	display: block;
	width: 12px;
	height: 11px;
	background-image: url(../img/common/arrow03.png);
	background-repeat:no-repeat; 
	background-size: 100% auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px;
	margin: auto;
}
.contents01 .contents01_02 .left_cont ul li::after{
	content:'';
	display: block;
	width: 12px;
	height: 11px;
	background-image: url(../img/common/arrow02.png);
	background-repeat:no-repeat; 
	background-size: 100% auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px;
	margin: auto;
	opacity: 0;
	transition: all .5s;
}
.contents01 .contents01_02 .left_cont ul li .text00{
	width: 100%;
	font-size: 18px;
	line-height: 28px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	transition: all .5s;
}
.contents01 .contents01_02 .left_cont ul li p span{
	font-size: 28px;
	line-height: 28px;
	margin-right: 10px;
	transition: all .5s;
	flex-shrink: 0;
}
/*pcのみ*/
@media only screen and (min-width: 768px){
	.contents01 .contents01_02 .left_cont ul li.selected{
		background-color: #131638;
		transition: all .5s;
	}
	.contents01 .contents01_02 .left_cont ul li.selected::before{
		opacity: 0;
		transition: all .5s;
	}
	.contents01 .contents01_02 .left_cont ul li.selected::after{
		opacity: 1;
		transition: all .5s;
	}
	.contents01 .contents01_02 .left_cont ul li.selected p{
		color: #fff;
		transition: all .5s;
	}
	.contents01 .contents01_02 .left_cont ul li.selected p span{
		color: #fff;
		transition: all .5s;
	}	
}
/*pcのみここまで*/

.contents01 .contents01_02 .left_cont .btn01{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 50px;
}
@media only screen and (max-width: 767px){
	.contents01 .contents01_02 .left_cont .btn01{
		width: 100%;
		height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 30px;
	}
}
.contents01 .contents01_02 .left_cont a{
	width: 205px;
	height: 52px;
	background-color: #1E5C9A;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	line-height: 25px;
	color: #fff;
}
.contents01 .contents01_02 .left_cont a img{
	width: 15px;
	height: auto;
	margin-left: 15px;
	margin-top: 2px;
}

/*右側切り替わり部分*/
.contents01 .contents01_02 .right_cont{
	width: 481px;
	/*min-height: 410px;*/
	height: 100%;
	flex-shrink: 0;
	position: relative;
}
.contents01 .contents01_02 .inner {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all .2s;
  z-index: 0;
  pointer-events: none;
}
.contents01 .contents01_02 .inner.active {
  opacity: 1;
  transition: all .2s;
  z-index: 1;
  pointer-events: auto;
}
.contents01 .contents01_02 .inner img{
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 19px;
}
.contents01 .contents01_02 .inner video{
	width: 100%;
	height: auto;
	display: block;
	margin-top: 35px;
	margin-bottom: 19px;
	position: relative;
	cursor: pointer;
}
.contents01 .contents01_02 .inner.movie02::after{
	content:'';
	display: block;
	width: 147px;
	height: 135px;
	background-image: url(../img/index/fukidashi01.png);
	background-repeat:no-repeat; 
	background-size: 100% auto;
	position: absolute;
	top: 0;
	left:26px;
}
.contents01 .contents01_02 .inner p{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 15px;
	line-height: 28px;
}

@media only screen and (max-width: 767px){
	.contents01 .contents01_02 .left_cont h3{
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 0;
		justify-content: center;
	}
	.contents01 .contents01_02 .left_cont{
		width: 100%;
	}
	.contents01 .contents01_02 .left_cont h3 .span01{
		font-size: 28px;
		line-height: 28px;
	}
	.contents01 .contents01_02 .left_cont ul li{
		padding: 27px 0 0;
		cursor: initial;
	}
	.contents01 .contents01_02 .left_cont ul li::before{
		content: initial;
	}
	.contents01 .contents01_02 .left_cont ul li .text00{
		align-items: flex-start;
		padding-right: 5%;
		position: relative;
	}
	.contents01 .contents01_02 .left_cont ul li .text00::after{
		content:'';
		display: block;
		width: 12px;
		height: 11px;
		background-image: url(../img/common/arrow03.png);
		background-repeat:no-repeat; 
		background-size: 100% auto;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto;
	}
	.contents01 .contents01_02 .inner_sp {
	  position: relative;
	  width: 90%;
	  height: auto;
	  margin: 0 auto;
	  padding: 10px 0 30px;
	  opacity: 1;
	}
	.contents01 .contents01_02 .inner_sp img{
		width: 100%;
		height: auto;
		display: block;
		margin-bottom: 15px;
	}
	.contents01 .contents01_02 .inner_sp video{
		width: 100%;
		height: auto;
		display: block;
		margin-top: 35px;
		margin-bottom: 19px;
		position: relative;
		cursor: pointer;
	}
	.contents01 .contents01_02 .sp_movie::after{
		content:'';
		display: block;
		width: 94px;
		height: 87px;
		background-image: url(../img/index/fukidashi01.png);
		background-repeat:no-repeat; 
		background-size: 100% auto;
		position: absolute;
		top: 15px;
		left: 17px;
	}



	.contents01 .contents01_02 .inner_sp .sp_text01{
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		font-size: 14px;
		line-height: 26px;
	}
}
/*.contents01ここまで*/


/*.contents02ここから*/
.contents02{
	width: 100%;
	height: auto;
}
.contents02 .contents02_01{
	width: 1080px;
	height: auto;
	position: relative;
	margin: 157px auto 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}
@media only screen and (max-width: 767px){
	.contents02 .contents02_01{
		width: 100%;
		margin: 0 auto 0;
		display: block;
	}
}
.contents02 .contents02_01 .contents02_01_01{
	width: 863px;
	height: auto;
	position: absolute;
	top: -60px;
	left: 0;
	right: 0;
	margin: auto;
	transform: translateX(-268px);
}
@media only screen and (max-width: 767px){
	.contents02 .contents02_01 .contents02_01_01{
		width: 100%;
		position: initial;
		margin: 0 auto;
		transform: initial;
	}
}
.contents02 .contents02_01 .contents02_01_01 img{
	width: 100%;
	height: auto;
	display: block;
}
.contents02 .contents02_01 .contents02_01_02{
	width: 700px;
	height: auto;
	padding: 59px 75px;
	background-color: #fff;
	box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.16);
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px){
	.contents02 .contents02_01 .contents02_01_02{
		width: 90%;
		max-width: 335px;
		margin: -50px auto 0;
		padding: 30px 30px 40px;
		box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
	}
}
.contents02 .contents02_01 .contents02_01_02 h3{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 24px;
	line-height: 40px;
	letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px){
	.contents02 .contents02_01 .contents02_01_02 h3{
		font-size:17px;
		line-height: 30px;
		letter-spacing: 0.02em;
	}
}
.contents02 .contents02_01 .contents02_01_02 .text01{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 15px;
	line-height: 28px;
	margin-top: 30px;
}
@media only screen and (max-width: 767px){
	.contents02 .contents02_01 .contents02_01_02 .text01{
		font-size: 14px;
		line-height: 26px;
		margin-top: 20px;
	}
}
/*.contents02ここまで*/


/*.contents03ここから*/
.contents03{
	width: 100%;
	height: auto;
}
.contents03 .contents03_01{
	width: 100%;
	height: auto;
	padding-top: 120px;
}
@media only screen and (max-width: 767px){
	.contents03 .contents03_01{
		padding-top: 80px;
	}
}
.contents03 .contents03_01 h2{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	line-height: 40px;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px){
	.contents03 .contents03_01 h2{
		font-size: 20px;
		line-height: 30px;
		letter-spacing: 0.03em;
	}
}
.contents03 .contents03_01 .contents03_01_01{
	width: 100%;
	height: auto;
	background: linear-gradient(to bottom, #fff 0px, #fff 231px, #131638 231px, #131638 100%);
	padding-bottom: 80px;
}
@media only screen and (max-width: 767px){
	.contents03 .contents03_01 .contents03_01_01{
		background: linear-gradient(to bottom, #fff 0px, #fff 157px, #131638 157px, #131638 100%);
		padding-bottom: 40px;
	}
}
.contents03 .contents03_01 .contents03_01_01 ul{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: stretch;
/*	gap: 90px;*/
	margin-top: 50px;
}
@media only screen and (max-width: 767px){
	.contents03 .contents03_01 .contents03_01_01 ul{
		margin-top: 30px;
	}
}
.contents03 .contents03_01 .contents03_01_01 ul li{
	width: 510px;
	height: auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.contents03 .contents03_01 .contents03_01_01 ul li{
		width: 280px;
	}
}
.contents03 .contents03_01 .contents03_01_01 ul li .thumbnail{
	width: 100%;
	height: auto;
	display: block;
}
.contents03 .contents03_01 .contents03_01_01 ul li .thumbnail a:hover{
	opacity: 1;
}
.contents03 .contents03_01 .contents03_01_01 ul li .thumbnail img{
	width: 100%;
	height: auto;
	display: block;
}
.contents03 .contents03_01 .contents03_01_01 ul li .text_area{
	width: 100%;
	height: auto;
	margin-top: 20px;
	display: block;
}
.contents03 .contents03_01 .contents03_01_01 ul li .text_area .text01{
	font-size: 25px;
	line-height: 35px;
	color: #fff;
}
@media only screen and (max-width: 767px){
	contents03 .contents03_01 .contents03_01_01 ul li .text_area .text01{
		font-size: 18px;
		line-height: 27px;
	}
}
.contents03 .contents03_01 .contents03_01_01 ul li .text_area .text02{
	font-size: 20px;
	line-height: 32px;
	margin-top: 15px;
	color: #fff;
}
@media only screen and (max-width: 767px){
	.contents03 .contents03_01 .contents03_01_01 ul li .text_area .text02{
		font-size: 16px;
		line-height: 28px;
	}
}
.contents03 .contents03_01 .contents03_01_01 ul li .text_area .text03{
	font-size: 15px;
	line-height: 28px;
	margin-top: 20px;
	color: #fff;
}
@media only screen and (max-width: 767px){
	.contents03 .contents03_01 .contents03_01_01 ul li .text_area .text03{
		font-size: 14px;
		line-height: 26px;
		margin-top: 15px;
	}
}
.contents03 .contents03_01 .contents03_01_01 ul li a{
	font-size: 15px;
	line-height: 22px;
	color: #fff;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 20px;
}
.contents03 .contents03_01 .contents03_01_01 ul li a .arrow{
	width: 22px;
	height: auto;
	display: block;
	margin-left: 15px;
}
.slide02 li {
  width: 400px;         /* スライドの幅を調整（自由に変更OK） */
  margin: 0 45px;       /* 左右で90pxの間隔をつける */
}
@media only screen and (max-width: 767px){
	.slide02 li {
	  width: 280px;         /* スライドの幅を調整（自由に変更OK） */
	  margin: 0 14px;       /* 左右で90pxの間隔をつける */
	}
}
.slide02 {
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 767px){
	.contents03_01_01 .slide02 .slick-slide {
	  opacity: 0.3;
	  transition: opacity 0.5s ease;
	}

	.contents03_01_01 .slide02 .slick-slide.slick-center {
	  opacity: 1;
	}	
}
html body main section.contents03 div.contents03_01 div.contents03_01_01 ul.slide02.slick-initialized.slick-slider button.slick-prev.slick-arrow{
	left: 0;
	right: 600px;
	top: 155px;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px){
	html body main section.contents03 div.contents03_01 div.contents03_01_01 ul.slide02.slick-initialized.slick-slider button.slick-prev.slick-arrow{
		left: 0;
		right: 280px;
		top: 80px;
		margin: auto;
		width: 32px;
		height: 32px;
	}
}
html body main section.contents03 div.contents03_01 div.contents03_01_01 ul.slide02.slick-initialized.slick-slider button.slick-next.slick-arrow{
	left: 600px;
	right: 0;
	top: 155px;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px){
	html body main section.contents03 div.contents03_01 div.contents03_01_01 ul.slide02.slick-initialized.slick-slider button.slick-next.slick-arrow{
		left: 280px;
		right: 0;
		top: 80px;
		margin: auto;
		width: 32px;
		height: 32px;
	}
}

/*矢印指示*/
.slick-prev::before{
	width: 42px;
	height: 42px;
	background-image: url(../img/index/left.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.slick-prev::before{
		width: 32px;
		height: 32px;
	}
}
.slick-next::before{
	width: 42px;
	height: 42px;
	background-image: url(../img/index/right.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.slick-next::before{
		width: 32px;
		height: 32px;
	}
}
/*.contents03ここまで*/


/*.contents04ここから*/
.contents04{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	background-color: #F4F4F4;
}
.contents04 .contents04_01{
	width: 1080px;
	height: auto;
	padding: 80px 0;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.contents04 .contents04_01{
		width: 90%;
		max-width: 335px;
		padding: 60px 0 50px;
	}
}
.contents04 .contents04_01 h2{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	line-height: 40px;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px){
	.contents04 .contents04_01 h2{
		font-size: 20px;
		line-height: 30px;
		letter-spacing: 0.03em;
	}
}
.contents04 .contents04_01 .contents04_01_01{
	width: 100%;
	height: auto;
	margin: 40px auto 0;
	display: block;
}
.contents04 .contents04_01 .contents04_01_01 .contents04_01_01_01_01{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 18px auto 0;
	display: block;
	background-color: #fff;
	border-radius: 8px;
}
.contents04 .contents04_01 .contents04_01_01 .contents04_01_01_01_01:nth-of-type(1){
	margin-top: 0;
}
.contents04 .contents04_01 .contents04_01_01 .contents04_01_01_01_01 h3{
	width: 100%;
	height: auto;
	position: relative;
	font-size: 18px;
	line-height: 28px;
	cursor: pointer;
	padding: 15px 60px 15px 34px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
@media only screen and (max-width: 767px){
	.contents04 .contents04_01 .contents04_01_01 .contents04_01_01_01_01 h3{
		width: 100%;
		height: auto;
		position: relative;
		font-size: 15px;
		line-height: 22px;
		cursor: pointer;
		padding: 20px 60px 20px 28px;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}
}
.contents04 .contents04_01 .contents04_01_01 .contents04_01_01_01_01 h3 span{
	margin-right: 8px;
	flex-shrink: 0;
}
.contents04_01_01_01_01 h3::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background-image: url(../img/common/arrow06.png);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  transition: all 0.8s;
}
@media only screen and (max-width: 767px){
	.contents04_01_01_01_01 h3::before {
		right: 20px;
	}
}
.contents04_01_01_01_01 h3.open::before{
	opacity: 0;
	transition: all 0.8s;
}
.contents04_01_01_01_01 h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background-image: url(../img/common/arrow07.png);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.8s;
}
@media only screen and (max-width: 767px){
	.contents04_01_01_01_01 h3::after{
		right: 20px;
	}
}
.contents04_01_01_01_01 h3.open::after{
	opacity: 1;
	transition: all 0.8s;
}
.contents04 .contents04_01 .contents04_01_01 .contents04_01_01_01_01 h4{
	font-size: 16px;
	line-height: 26px;
	padding: 15px 0;
	background-color: #fff;
	margin: 0 34px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
}
@media only screen and (max-width: 767px){
	.contents04 .contents04_01 .contents04_01_01 .contents04_01_01_01_01 h4{
		font-size: 15px;
		line-height: 20px;
		margin: 0 34px 0 28px;
	}
}
.contents04 .contents04_01 .contents04_01_01 .contents04_01_01_01_01 h4::before{
	content: "";
	 position: absolute;
	 left: 0;
	 right: 0;
	 top: 0;
	 height: 2px;
	 background-image: repeating-linear-gradient(
	   to right,
	   #000 0 2px,      /* 点の長さ */
	   transparent 4px 8px  /* 間隔 */
	 );
}
.contents04 .contents04_01 .contents04_01_01 .contents04_01_01_01_01 h4 span{
	color: #1E5C9A;
	margin-right: 10px;
	flex-shrink: 0;
}

.movie{
	width: 100%;
	height: auto;
	display: block;
	margin-top: 90px;
}
@media only screen and (max-width: 767px){
	.movie{
		margin-top: 30px;
	}
}
.movie .movie_inner{
	width: 1080px;
	height: auto;
	margin: 0 auto 104px;
	display: block;
}
@media only screen and (max-width: 767px){
	.movie .movie_inner{
		width: 90%;
		max-width: 335px;
		margin: 0 auto 52px;
	}
}
.movie .movie_inner img{
	width: 100%;
	height: auto;
	display: block;
}

.btn02{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 30px;
}
@media only screen and (max-width: 767px){
	.btn02{
		margin-top: 56px;
	}
}
.btn02 a{
	width: 231px;
	height: 52px;
	background-color: #1E5C9A;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	line-height: 25px;
	color: #fff;
}
@media only screen and (max-width: 767px){
	.btn02 a{
		width: 231px;
		height: 52px;
		background-color: #1E5C9A;
		border-radius: 36px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 15px;
		line-height: 25px;
		color: #fff;
		margin: 0 auto;
	}
}
.btn02 a img{
	width: 15px;
	height: auto;
	margin-left: 15px;
	margin-top: 2px;
}

.btn03{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}
@media only screen and (max-width: 767px){
	.btn03{
		margin-top: 30px;
	}
}
.btn03 a{
	width: 233px;
	height: 52px;
	background-color: #fff;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	line-height: 25px;
	color: #131638;
}
.btn03 a img{
	width: 15px;
	height: auto;
	margin-left: 15px;
	margin-top: 2px;
}


.floating-banner{
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 194px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
  z-index: 9999;
}
.floating-banner a{
	width: 100%;
	height: auto;
	display: block;
}
.floating-banner a img{
	width: 100%;
	height: auto;
	display: block;
}
.floating-banner.show {
  opacity: 1;
  visibility: visible;
}
.floating-banner .close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #000;
  border: none;
  background-color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 16px;
  line-height: 22px;
}
@media screen and (max-width: 767px) {
  .floating-banner {
    display: none;
  }
}








