@charset "utf-8";

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

.btn,
a.btn,
button.btn {
line-height: 1.5;
position: relative;
display: inline-block;
padding: 1rem 4rem;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all 0.3s;
transition: all 0.3s;
text-align: center;
vertical-align: middle;
text-decoration: none;
letter-spacing: 0.1em;
color: #212529;
/*border-radius: 0.5rem;*/
}


/*塗りつぶしボックス*/

a.btn--color {
color: rgba(255,255,255,1) !important;
background-color: rgba(0,15,153,0.8);
}

a.btn--color:hover {
color: rgba(255,255,255,1) !important;
background: rgba(0,15,153,0.6);
}

/*枠線ボックス*/

a.btn--border {
border: 1px solid rgba(0,15,153,0.6);
}

a.btn--border:hover {
background: rgba(0,15,153,0.2);
}

/*共通指定*/

a.btn-c {
position: relative;
padding: 0.3rem 0.8rem;
}

a.btn-c i.fa, a.btn-c i.fas {
margin-right: 1rem;
}