@charset "utf-8";



/* 加入申込みの流れ　CSS */

/*****************************************
 　　PC用
 *****************************************/


@media screen and ( min-width:641px ) {

.btn_app2 a {
    width:460px;
    font-size:17px;
    padding:8px 0;
    margin:20px auto 60px;
}

.btn_app2 a:hover {
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

}

/*****************************************
 　　スマホ用
 *****************************************/

@media screen and ( max-width:640px ) {
	.btn_app2 a {
	    width:100%;
      line-height:1 !important;
      font-size:15px;
      padding:12px 0;
      margin:20px auto 40px;
	}
}


/*****************************************
 　　PC・スマホ共通
 *****************************************/
.btn_app2 {
 	text-align:center;
 }

 .btn_app2 a {
     position: relative;
     color:#28a5c6;
     display: inline-block;
     border: 1px solid #28a5c6;
     text-decoration: none;
     font-weight: bold;
     border-radius: 3px;
     text-align: center;
     text-decoration: none !important;
     border-radius:50px;
     -moz-border-radius:50px;
     -webkit-border-radius:50px;
     -ms-border-radius:50px;
 }

 .btn_app2 a:after {
     position: absolute;
     top: 50%;
     right:20px;
     margin-top: -9px;
     color: #28a5c6;
     font-family: FontAwesome;
     content: "\f138";
     vertical-align: middle;
 }

