@charset "utf-8";


/*  ボタン
---------------------------------------------------------- */
@keyframes anime{
10%{transform:scale(.95); opacity:1.5}
80%{opacity:.1}to{transform:scale(1.2,1.2); opacity:0}
}

/*01*/
.btn_box {
	position: relative;
    top:20px;
	margin-right:0px;
	margin-bottom:0px;
	display: inline-block;
    width:886px;
    height:166px;
    transition: .2s;
    z-index:1000;

}
.btn_box:before, .btn_box:after {
    content: "";
    position: absolute;
    z-index: -10;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    border-radius:90px;
    background:#dc0086;
}
.btn_box:before {animation: anime 2s ease-out infinite;}
.btn_box:after {animation: anime 2s ease-out 1s infinite;}
/*/01*/



/*02*/
.btn_box02 {
	position: relative;
    top:30px;
	margin-right:0px;
	margin-bottom:100px;
	display: inline-block;
    width:886px;
    height:166px;
    transition: .2s;
    z-index:1000;


}
 .btn_box02:before, .btn_box02:after {
    content: "";
    position: absolute;
    z-index: -10;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    border-radius:90px;
    background:#dc0086;

	
}
.btn_box02:before {animation: anime 2s ease-out infinite;}
.btn_box02:after {animation: anime 2s ease-out 1s infinite;}
/*/02*/

/*03*/
.btn_box03 {
	position: relative;
    top:30px;
	margin-bottom:100px;
	display: inline-block;
    width: 802px;
    height: 172px;

    transition: .2s;
    z-index:1000;

}
.btn_box03:before, .btn_box03:after {
    content: "";
    position: absolute;
    z-index: -10;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    border-radius: 90px;
    background:#e70051;
	
}
.btn_box03:before {animation: anime 2s ease-out infinite;}
.btn_box03:after {animation: anime 2s ease-out 1s infinite;}
/*/03*/