﻿.maruarea {
    position:absolute;
    top:600px;
    left:20px;
    z-index:2;
    position:fixed;
}

.marubox2 {
	position: absolute;
	width: 120px;
	height: 120px;
	margin: auto;
}
.marubox2 a {
	position: relative;
	display: block;
	width: 120px;
	height: 120px;
	padding: 50px 30px 10px 30px;
	line-height:1;
	text-align: center;
	background: rgba(119,119,119 1);
	color: #fff;
	font-size: 1.0em;
	text-decoration:none;
	word-break:break-all;
}
.marubox2.second a {
	border-radius: 50%;
	background: rgba(0,185,0, .9);
	color:#fff;
	text-decoration:none;
}

.marubox2 a:after {
	content: '';
	position: absolute;
    	top:20px;
    	left:20px;
	width: 140px;
	height: 140px;
	box-shadow: none;
}

.marubox2 a:hover:after {
	-webkit-animation: ripple 1.5s ease;
	animation: ripple 1.5s ease;
	background: rgba(204,204,204.1);
	color:#111;

}


.marubox2.second a:after {
	border-radius: 50%;
	box-shadow: none;
}
.marubox2.second a:hover:after {
	-webkit-animation: rippleSecond 1.5s ease;
	animation: rippleSecond 1.5s ease;
}

.marubox2.double a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 150px;
	height: 150px;
	box-shadow: none;
}
.marubox2.double a:hover:before {
	-webkit-animation: ripple 1.5s ease .3s;
	animation: ripple 1.5s ease .3s;
}

.marubox2.double.second a:before {
	border-radius: 50%;
	box-shadow: none;
}
.marubox2.double.second a:hover:before {
	-webkit-animation: rippleSecond 1.5s ease .3s;
	animation: rippleSecond 1.5s ease .3s;
}






@-webkit-keyframes ripple {
	0%{opacity: 1;-webkit-transform:scale(1);transform:scale(1);box-shadow: 0 0 0 1px rgba(153,153,153,0);}
	100%{opacity: 0;-webkit-transform: scale(2);transform: scale(2);box-shadow: 0 0 0 2px rgba(52,72,87,1);}
}
@keyframes ripple {
	0%{opacity: 1;-webkit-transform:scale(1);transform:scale(1);box-shadow: 0 0 0 1px rgba(153,153,153,0);}
	100%{opacity: 0;-webkit-transform: scale(2);transform: scale(2);box-shadow: 0 0 0 2px rgba(153,153,153,1);}
}
@-webkit-keyframes rippleSecond {
	0%{opacity: 1;-webkit-transform:scale(1);transform:scale(1);box-shadow: 0 0 0 1px rgba(204,204,204,0);}
	100%{opacity: 0;-webkit-transform: scale(2);transform: scale(2);box-shadow: 0 0 0 2px rgba(204,204,204,1);}
}
@keyframes rippleSecond {
	0%{opacity: 1;-webkit-transform:scale(1);transform:scale(1);box-shadow: 0 0 0 1px rgba(204,204,204,0);}
	100%{opacity: 0;-webkit-transform: scale(2);transform: scale(2);box-shadow: 0 0 0 2px rgba(204,204,204,1);}
}

