@charset "UTF-8";
/* ----------------------------------------------------------------------
固定サイドボタン
---------------------------------------------------------------------- */
.c-navi3__txt {
    display: block;
	font-size: 12px;
    margin-top: 9px; 
}
.c-navi3__bnt {
	position: relative ;
}
.c-navi3__item {
    width: 72px;
    text-align: center;
    cursor: pointer;
    right: 0;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
}
.c-navi3__item:first-child > p {
	background: rgba(255,221,131,0.9);
	background: -moz-linear-gradient(-45deg, rgba(76,100,211,0.9), rgba(207,46,146,0.9), rgba(242,105,57,0.9), rgba(255,221,131,0.9));
    background: linear-gradient(150deg, rgba(76,100,211,0.9), rgba(207,46,146,0.9), rgba(242,105,57,0.9), rgba(255,221,131,0.9));
}
.c-navi3__item:first-child .c-navi3__txt {
        color: #fff;
}
.c-navi3__item:nth-child(2) > p {
    background: rgba(60,90,153,0.9);
}
.c-navi3__item:nth-child(3) > p {
    background: rgba(196,48,43,0.9);
}
.c-navi3__item:last-child > p {
    background: rgba(255,255,255,0.9);
}
.c-navi3__item:not(:last-of-type) p a,
.c-navi3__item:not(:last-of-type) p .c-navi3__txt {
	color: #ffffff;
}
.c-navi3__item p {
	padding: 15px 0;
	margin-bottom: 0;
    line-height: 1;
}
.c-navi3__item p a {
    transition: .5s;
    line-height: 13px;
}
.c-navi3__item img {
    max-width: 17px;
	max-height: 17px;
}
#c-navi {
	opacity:0;
	-webkit-animation: inAnimation 0.25s ease forwards 1.0s; 
        animation: inAnimation 0.25s ease forwards 1.0s;
}


@media screen and (min-width: 771px) {
	#c-navi {
		right: -10%;
	}

	@-webkit-keyframes inAnimation {
		0% { }
		100% { 
			right: 0;
			opacity: 1; }
	}
	@keyframes inAnimation {
		0% { }
		100% { 
			right: 0;
			opacity: 1; }
	}	
	.c-navi3 {
		right: 0;
		top: 50%;
		z-index: 999;
		background: none;
		-webkit-box-shadow: 0px 7px 10px 2px rgba(0, 0, 0, 0.1);
			box-shadow: 0px 7px 10px 2px rgba(0, 0, 0, 0.1); 
            position: fixed;
		transform: translateY(-50%); 
    }
    .c-navi3__item:hover > p {
        z-index: 1; }
        .c-navi3__item:hover > p img {
        transform: scaleX(-1);

        transition: .3s;
    }
    .c-navi3__item:hover .c-navi3__box {
        right: 72px;
        opacity: 1;
    }
}


@media screen and (max-width: 770px) {
	#c-navi {
		bottom: -60px;
	}

	@-webkit-keyframes inAnimation {
		0% { }
		100% { 
			bottom: 0;
			opacity: 1; }
	}
	@keyframes inAnimation {
		0% { }
		100% { 
			bottom: 0;
			opacity: 1; }
	}	
	#footer_bottom {
    margin-bottom: 60px;
	}
	#return_top {
    bottom: 60px;
    }
	.c-navi3 {
		z-index: 99;
		display: flex;
		flex-wrap: wrap;
		position: fixed;
		left: 0;
		bottom: 0;
		/*bottom: -60px;*/
		width: 100%;
		/*width: calc(100% - 60px);*/
    }  
    .c-navi3.active {
		bottom: 0;			    
    } 
    .c-navi3__item {
    width: 25%;
	max-height: 56px;
    }
    .c-navi3__item p {
    padding: 10px 0;
	}
	
}