@charset "UTF-8";
/* CSS Document */


/***

フローティング バナー

***/
.bn_floating_bg {
	clear: both;
	width: 300px;
	height: auto;
	margin: 0;
	padding: 0;
	position: fixed;
	bottom: 35px;
	right: 40px;
	
	z-index: 110;
	display: none;
}
.bn_floating {
	clear: both;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
	
	
}
.bn_floating2 {
	clear: both;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
	
	/* border-width: 1px;
	border-width: 3px;
	border-color: #333;
	border-color: #CAAE7E;
	border-style: solid;
	border-radius: 11px;
	background-color: #fff;
	overflow: hidden; */
	
	/* box-shadow: 0px 8px 16px -5px #000; */
}

@media screen and (max-width: 750px) {
.bn_floating_bg {
	width: 48%;
	
	bottom: 20px;
	right: 20px;
}
.bn_floating {
	/* right: 50%;
	transform: translate(50%, 0); */
/*
	width: 200px;
	width: 260px;
	right: 20px;
	bottom: 20px;
	padding: 10px 10px 4px 10px;
*/
}
.bn_floating .bn_floating_tit {
	display: none;
	display: block;
}
	
	
  .bn_floating .bn_floating_text_pc {
    display: none; }
  .bn_floating .bn_floating_text_sp {
    display: block;
    text-align: left;
	  text-align: center;
    line-height: 1.2;
    font-size: 14px;
    margin: 0 auto 2px;
/*
    border-color: #777;
    border-bottom-style: solid;
    border-bottom-width: 1px;
*/
    padding: 5px 4px 8px 4px; }
  .bn_floating .bn_floating_link {
    padding: 5px 0;
/*    text-align: right;*/
/*    padding-right: 30%;*/
	}
  .bn_floating .bn_floating_link i {
    left: 15px; }
	
.bn_floating .close_btn_pc {
	display: none;
}
}


.bn_floating .close_btn_sp2 {
	width: 26px;
	height: 26px;
	position: absolute;
	top: 1px;
	right: -26px;
	z-index: 55;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	background: #fff;
	border: 1px solid #f2984f;
	box-sizing: border-box;
	border-radius: 13px;
	
	/* box-shadow: 0px 6px 8px -5px #000; */
}
.bn_floating .close_btn_sp2 a {
	line-height: 100.1%;
	width: 18px;
	height: 18px;
	margin: 0;
	padding: 0;
	position: relative;
/*	background: rgba(119,185,142,1.00);*/
}

.close_btn_sp2 a::before, .close_btn_sp2 a::after { /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px; /* 棒の幅（太さ） */
  height: 15px; /* 棒の高さ */
  background: #222;
}
 
.close_btn_sp2 a::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.close_btn_sp2 a::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}