@charset "UTF-8";

/*=====================テキストボタン=====================*/
.btn a {background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	text-decoration: none;
	width: 100%;}

.btn a:hover {
    background: #313131;
    color: #FFF;}

.btn a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;}
.btn a:hover:after {
    border-color: #FFF;}

.btn.p33{width: 33%;}
@media(max-width:768px) {.btn.p33{width: 100%;}}


