@charset "utf-8";
/* CSS Document */
.btn06{
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
	background:#1A2C61; /* 9e9e9f */
	color: #ffffff;
    padding: 10px 40px 10px 30px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .0s;
	border-radius: 10px;
}

.btn06:hover{
	background: #1A2C61; /* 5b5b5b */
	color: #ffffff;
}
.cbBox .btn06 {
	 color: #ffffff!important;
}
.cbBox .btn06:hover {
	background-color: #1A2C61;
	color: #ffffff!important;
}

/* 矢印が右に移動 */

.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top:35%;
    right: 20px;
    /*矢印の形状*/
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff; /* →を無色に */
    border-right: 3px solid #fff; /* →を無色に */
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
    right: 11px;
	border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}
/*------------------------------------------*/
/* tab以下の場合の矢印のサイズ */
@media screen and (max-width: 767.98px) {
	.btnarrow1::after{
		content: '';
		/*絶対配置で矢印の位置を決める*/
		position: absolute;
		top:40%;
		right: 20px;
		/*矢印の形状*/
		width: 15px;
		height: 15px;
		border-top: 3px solid transparent;
		border-right: 3px solid transparent;
		transform: rotate(45deg);
		/*アニメーションの指定*/
		transition: all .3s;
	}
	/*hoverした際の移動*/
	.btnarrow1:hover::after{
		right: 11px;
		border-top: 3px solid #fff;
		border-right: 3px solid #fff;
	}
}
