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

/*----------------------------------------*/
/*  フッター固定メニュー             　　 */
/*----------------------------------------*/

.fixbtn {
    position: fixed;
    bottom: 0;
    left: 0;
	z-index: 1000;
	width: 100%;
}

.fixbtn ul {
	display: table;
	width: 100%;
	border-top: 1px solid #FFF;
	}

.fixbtn ul li {
	display: table-cell;
	width: 25%;
	border-right: 1px solid #FFF;
	text-align: center;
	vertical-align: middle;
	}

.fixbtn ul li:nth-child(1) { background-color: #003785; } /*左から1番目*/
.fixbtn ul li:nth-child(2) { background-color: #003785; } /*左から2番目*/
.fixbtn ul li:nth-child(3) { background-color: #003785; } /*左から3番目*/
.fixbtn ul li:nth-child(4) { background-color: #003785; } /*左から4番目*/

.fixbtn ul li a {
	display: block;
	padding: 7px 0 6px 0;
	line-height: 1em;
	}
	
.fixbtn ul li a,
.fixbtn ul li a:hover,
.fixbtn ul li a:visited {
	color: #ffffff !IMPORTANT; /*ボタンのテキスト色*/
	font-weight: normal !IMPORTANT;
	text-decoration: none !IMPORTANT;
}

.fixbtn ul li a:hover {
	text-decoration: none;
	}

.fixbtn ul li a img {
	height: 20px;
	}

.fixbtn ul li a p {
	margin-top: 6px;
	font-size: 1.3rem;
	}



/*----------------------------------------*/
/*  ページトップボタン             　　　 */
/*----------------------------------------*/

.pagetop {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 2000;   
}

.pagetop a {
    position: relative;
    display: inline-block;
    text-indent: -9999px;
    width: 50px;
    height: 50px;
}

.pagetop a:before {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFF;
    -webkit-backdrop-filter: contrast(4) blur(6px);
    backdrop-filter: contrast(4) blur(6px);
    box-shadow: 0 3px 6px -1px rgba(0, 0, 128, 0.2), 0 0 8px -4px rgba(0, 0, 128, 0.2);
    transition: color .18s, background .18s, opacity .18s, visibility .18s;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: auto;
}
.pagetop a:after {
    content: '';
    width: 11px;
    height: 11px;
    border: 0;
    border-top: solid 3px #333;
    border-right: solid 3px #333;
    transform: rotate(-45deg);
    position: absolute;
    top: 2px;
    left: 18px;
    bottom: 0;
    margin: auto;
}
