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

#floating{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 998;
    /*ナビのスタート位置と形状*/
	bottom:-391px;
    right:0;
	width:350px;
    height:460px;/*ナビの高さ*/
	background:#F2F5F7;
    /*動き*/
	transition:0.2s;
}

/*アクティブクラスがついたら位置を0に*/
#floating.panelactive{
    bottom: 0;
}

/*ナビゲーションの縦スクロール*/
#floating.panelactive #floating-list{
    /*ナビの数が増えた場合縦スクロール*/
    z-index: 999; 
    width: 100%;
    overflow: auto;
	flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#floating ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
a.floating_btn2{
	color: #0C5EA4;
}
/*リストのレイアウト設定*/

#floating li{
	list-style: none;
    text-align: center; 
}

#floating li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
#floating-list{
	align-items: center;
	padding: 20px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn2{
	cursor: pointer;
    width: 350px;
	padding: 20px;
	background: rgb(18,123,197);
	background: linear-gradient(90deg, rgba(18,123,197,1) 0%, rgba(6,66,134,1) 100%);
	color: #fff;
	text-align: center;
}
.openbtn2:after {
  content:url("../img/btn_icon.svg");
  display: inline-block;
  width: 5px;
  height: 5px;
	margin-left: 10px;
}
	
.openbtn2.active{
	bottom:320px;
	transition:0.3s;
}