/*背景ないとき!importantいれる*/
/** new button styles **/
.btn-all {
	border-radius: 3px;
	font-size: 15px;
	font-weight: bold;
	line-height:20px;
	margin: 0;
	padding: 5px 15px;
	text-align:center;
	cursor: pointer;
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
	box-sizing: border-box;
	position: relative;
}
.btn-all:hover {
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btn-all:before {
	-webkit-transition:0.5s all ease;
	transition:0.5s all ease;
	position: absolute;
	top:0;
	left:50%;
	right:50%;
	bottom:0;
	opacity:0;
	content:'';
	width: 1px;
	background: #fff;
}
.btn-all:hover:before {
	-webkit-transition:0.5s all ease;
	transition:0.5s all ease;
	width: 100%;
	left:0;
	right:0;
	opacity: .2;
	z-index: -1px;
}
a.btn-all {
	display: inline-block;
	text-decoration: none!important;
	color: #fff;
}
.btn-red {
    color: #fff !important;
    background: #f93a1a !important;
    border: 1px solid #f93a1a !important;
}
.btn-bgred {
    color: #fff;
    background: #b81a1a;
    border: 1px solid #b81a1a;
}
.btn-wakuline {
	color: #575757 !important;
    background: #fff;
    border: 1px solid #ccc !important;
}
.btn-bgorange {
    background: #f97306 !important;
    color: #fff;
    border: 1px solid #f97306 !important;
}
.btn-wakunasi {
	color: #575757 !important;
    background: #fff;
    border: 1px solid #fff;
}
.btn-wakured{
	color: #575757 !important;
	background: #ffc5b7;
    border: 2px solid #ff8d7a;
}
.btn-gray {
    color: #ccc;
    background: #efefef;
    border: 1px solid #efefef;
	border-radius: 3px;
	font-size: 15px;
	font-weight: bold;
	line-height:20px;
	margin: 0;
	padding: 5px 15px;
	text-align:center;
    cursor: default;
	box-sizing: border-box;
	position: relative;
}
.btn-gray:link, .btn-gray:hover, .btn-gray:visited{
	display: inline-block;
	text-decoration: none;
	color: #ccc;
}
.btn-newlife{
    font-size: 24px;
    color: #fff !important;
    background: #ee777e !important;
    border: 1px solid #ee777e !important;
    max-width: 650px;
    padding: 22px 40px;
}
.btn-register-1{
	font-size: 24px;
    color: #000000 !important;
    background: #12c8aa !important;
    border: 1px solid #12c8aa !important;
    max-width: 650px;
    padding:40px;
}
.btn-register-1::after{
	content: '';
    border: 0;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%) rotate(45deg);
}
.btn-register{
	font-size: 24px;
	max-width: 650px;
    padding: 22px 40px;
	color: #fff !important;
    background: #f93a1a !important;
    border: 1px solid #f93a1a !important;
}
/** btn disabled **/
.btn-bgred:disabled, .btn-bgred:disabled:hover, .btn-red:disabled, .btn-red:disabled:hover, .btn-wakuline:disabled, .btn-wakuline:disabled:hover, .btn-bgorange:disabled, .btn-bgorange:disabled:hover, .btn-wakunasi:disabled, .btn-wakunasi:disabled:hover, .btn-wakured:disabled, .btn-wakured:disabled:hover{
    color: #ccc !important;
    background: #efefef !important;
    border: 1px solid #efefef !important;
	margin: 0;
    cursor: default;
	box-shadow: 0 0 0 rgba(0,0,0,0);
}
.btn-all:disabled:before {
	display: none;
}

/** btn size **/
.btn-s {
    font-size: 14px;
    padding: 3px 10px;
}
.btn-m {
    font-size: 17px;
    padding: 10px 20px;
}
.btn-m2 {
    font-size: 17px;
    padding: 10px 60px;
}
.btn-l{
    font-size: 20px;
    padding: 15px 40px;
}

/** btn width**/
.btn-block{
    margin: 30px 0;
}
.btn-block a{
	display: block;
}
.btn-w100{
	width:100%;
}
.btn-w50{
	width:49.5%;
}
.btn-w50 a{
	display: block;
}

/** btns-wrap 2個場合**/
.btns-wrap{
	text-align: center;
	margin: 30px 0;
}
/*.btns-wrap a{
	display: block;
}*/
.btns-wrap div{
	margin: 10px 0;
}
.btns-wrap.padding{
	padding: 0 10px;
}
.btns-wrap.padding20pc{
	padding: 0 20%;
	margin: 10px 0;
}

/** btn-wrap 1個場合**/
.btn-wrap{
	text-align: center;
	margin: 30px 0;
}
/*.btn-wrap a{
	display:block;
}*/
.btn-wrap div{
	margin: 10px 0;
}
.btn-wrap input, .btn-wrap button{
	margin: 5px 0;
}
.btn-wrap.padding{
	padding: 0 10px;
}
.btn-wrap.padding20pc{
	padding: 0 20%;
	margin: 10px 0;
}
.btn-wrap.padding30pc{
	padding: 0 30%;
	margin: 30px 0;
}
.btn-wrap .mr10{
	margin: 0 10px 0 0;
}
.btn-wrap.mtb10{
	margin: 10px 0;
}
.btn-wrap.left{
	text-align: left;
}

/** btns left right **/
.btn-w50l, .btn-w50r{
	width:49.5%;
	float: left;
}
.btn-w50r{
	float: right;
}
.btn-w50l a, .btn-w50r a{
	display: block;
}