@charset "utf-8";
/* CSS Document */

.msizebox {
    width: 700px;
    margin: auto;
}
.t_al_c { text-align: center; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }

.mb20 { margin-bottom: 20px; }

.member-btn a {
    display: inline-block;
    padding: 14px 180px;
    color: #fff;
    border: #f45712 2px solid;
	border-radius: 4px;
    background: #f45712;
    font-size: 15px;
    position: relative;
    transition: color .2s cubic-bezier(.85,0,.15,1),background .2s cubic-bezier(.85,0,.15,1);
}
.member-btn a.arrow::after {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 16px;
    font-size: 10px;
    transform: translateY(-50%);
}
.member-btn a:hover {
    color: #f45712;
    background: #fff;
}

@media screen and (max-width: 640px) {
.msizebox {
    width: 100%;
}
.member-btn a {
    padding: 20px;
	margin: auto;	
    display: block;
}


}